Added some finishing touches to the Message classes. Integrated some event support in input handling.
16 lines
319 B
Java
16 lines
319 B
Java
package elements.exceptions;
|
|
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* Created by Guillermo Serrahima on 10/9/16.
|
|
*/
|
|
public class ReadErrorChatException extends IOException {
|
|
public ReadErrorChatException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public ReadErrorChatException(IOException e) {
|
|
super(e);
|
|
}
|
|
}
|