org.voovan.tools.exception.LargerThanMaxSizeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-common Show documentation
Show all versions of voovan-common Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.tools.exception;
/**
* 内存已被释放的异常
*
* @author: helyho
* Voovan Framework.
* WebSite: https://github.com/helyho/Voovan
* Licence: Apache v2 License
*/
public class LargerThanMaxSizeException extends RuntimeException{
public LargerThanMaxSizeException() {
super();
}
public LargerThanMaxSizeException(String message) {
super(message);
}
public LargerThanMaxSizeException(String message, Throwable cause) {
super(message, cause);
}
public LargerThanMaxSizeException(Throwable cause) {
super(cause);
}
}