org.nico.aoc.throwable.BookStorageException 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月7日 下午2:55:23
*/
public class BookStorageException extends Exception{
private static final long serialVersionUID = 1L;
public BookStorageException(String bookId) {
super(bookId + " already exist");
}
}