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,20 @@
package it.valueteam.gnp.proxy.exception;
/**
* <p>Title: Progetto Gateway OLO MNP</p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2002</p>
* <p>Company: </p>
* @author Marco Palmini
* @version 1.0
*/
public class InfobusHandlerException extends Exception {
public InfobusHandlerException(Exception e){
super(e.getMessage());
}
public InfobusHandlerException(String msg) {
super(msg);
}
}