package it.valueteam.gnp.proxy.exception; /** *

Title: Progetto Gateway OLO MNP

*

Description:

*

Copyright: Copyright (c) 2002

*

Company:

* @author Marco Palmini * @version 1.0 */ public class InfobusHandlerException extends Exception { public InfobusHandlerException(Exception e){ super(e.getMessage()); } public InfobusHandlerException(String msg) { super(msg); } }