package wenrgise.common.exception; import java.io.Serializable; import java.util.ArrayList; public class EnrgiseMessageKeyException extends EnrgiseApplicationException implements Serializable { public EnrgiseMessageKeyException() {} public EnrgiseMessageKeyException(String sMsgKey, ArrayList oArguments) { super(sMsgKey, oArguments); } public EnrgiseMessageKeyException(String sMsgKey, ArrayList oArguments, String sErrorType) { super(sMsgKey, oArguments, sErrorType); } }