This repository has been archived on 2022-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
geiserpbot/src/elements/exceptions/ReadErrorChatException.java
vylion ef2ea921cc Added some save functionality in Persistence layer.
Added some finishing touches to the Message classes.
Integrated some event support in input handling.
2016-10-09 16:34:36 +02:00

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