View Javadoc

1   package paolomind.multitalk.netmessage;
2   
3   import java.io.IOException;
4   
5   /**
6    * Questa classe rappresenta  le eccezzioni per messaggi non interpretati.
7    * @author paolo
8    *
9    */
10  public class MessageException extends IOException {
11  
12    /** */
13    private static final long serialVersionUID = -2446743417518853662L;
14  
15    /**
16     * Costruttore.
17     */
18    public MessageException() {
19      super("Messaggio non valido");
20    }
21  
22    /**
23     * Costruttore.
24     * @param s messaggio
25     */
26    public MessageException(final String s) {
27      super(s);
28    }
29  }