org.nico.aoc.throwable.BookLoaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noaoc Show documentation
Show all versions of noaoc Show documentation
Provides aop and ioc capabilities
package org.nico.aoc.throwable;
/**
*
* @author nico
* @version createTime:2018年3月10日 下午6:29:22
*/
public class BookLoaderException extends Exception{
private static final long serialVersionUID = 1L;
public BookLoaderException() {
super();
// TODO Auto-generated constructor stub
}
public BookLoaderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public BookLoaderException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public BookLoaderException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public BookLoaderException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}