Files
BattleBane/src/engine/exception/MsgSendException.java
T

32 lines
1.2 KiB
Java
Raw Normal View History

2022-04-30 09:41:17 -04:00
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2022
// www.magicbane.com
2023-07-15 09:23:48 -04:00
package engine.exception;
2022-04-30 09:41:17 -04:00
public class MsgSendException extends MBServerException {
2023-07-15 09:23:48 -04:00
private static final long serialVersionUID = 6927044139998382254L;
2022-04-30 09:41:17 -04:00
2023-07-15 09:23:48 -04:00
public MsgSendException() {
super();
}
2022-04-30 09:41:17 -04:00
2023-07-15 09:23:48 -04:00
public MsgSendException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
2022-04-30 09:41:17 -04:00
2023-07-15 09:23:48 -04:00
public MsgSendException(String arg0) {
super(arg0);
}
2022-04-30 09:41:17 -04:00
2023-07-15 09:23:48 -04:00
public MsgSendException(Throwable arg0) {
super(arg0);
}
2022-04-30 09:41:17 -04:00
}