package at.knowcenter.wag.egov.egiz.exceptions; public class OutOfMemoryException extends PresentableException { private static final long serialVersionUID = 1L; public OutOfMemoryException(int errorCode, String message, Throwable cause) { super(errorCode, message, cause); } public OutOfMemoryException(int errorCode, String message) { super(errorCode, message); } public OutOfMemoryException(int errorCode, Throwable cause) { super(errorCode, cause); } }