You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.exception; |
|
|
|
public class FactoryBuildException extends MBServerException { |
|
|
|
private static final long serialVersionUID = 2331961867931593523L; |
|
|
|
public FactoryBuildException() { |
|
super(); |
|
} |
|
|
|
public FactoryBuildException(String arg0, Throwable arg1) { |
|
super(arg0, arg1); |
|
} |
|
|
|
public FactoryBuildException(String arg0) { |
|
super(arg0); |
|
} |
|
|
|
public FactoryBuildException(Throwable arg0) { |
|
super(arg0); |
|
} |
|
|
|
}
|
|
|