package com.isti.xmax; /** * Special exception generated inside of XMAX * * @author Max Kokoulin */ public class XMAXException extends Exception { private static final long serialVersionUID = 1L; public XMAXException() { super(); } public XMAXException(String str) { super(str); } }