package it.valueteam.gnp.exception; public class EventoCRMException extends Exception { private static final long serialVersionUID = 1L; private String excCode; private String excString; public EventoCRMException(String code, String message) { super(message); excCode = code; excString = message; } /** * @return the excCode */ public String getExcCode() { return excCode; } /** * @return the excString */ public String getExcString() { return excString; } }