001package org.avaje.classpath.scanner.core;
002
003/**
004 * Exceptions throw when scanning the classpath.
005 */
006public class ClassPathScanException extends RuntimeException {
007
008  public ClassPathScanException(String msg) {
009    super(msg);
010  }
011
012  public ClassPathScanException(String msg, Exception e) {
013    super(msg, e);
014  }
015
016  public ClassPathScanException(Throwable e) {
017    super(e);
018  }
019}