org.voovan.tools.exception.MemoryReleasedException 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 MemoryReleasedException extends RuntimeException{
public MemoryReleasedException() {
super();
}
public MemoryReleasedException(String message) {
super(message);
}
public MemoryReleasedException(String message, Throwable cause) {
super(message, cause);
}
public MemoryReleasedException(Throwable cause) {
super(cause);
}
}