Files
gateway-dbc-fx/gnpdev/dbcfx/src/it/valueteam/gnp/proxy/exception/InfobusHandlerException.java
2024-05-09 17:40:24 +02:00

21 lines
426 B
Java

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);
}
}