First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
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;
}
}