mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
22 lines
422 B
Java
22 lines
422 B
Java
package com.l2jserver.service.game.template;
|
|
|
|
public class TemplateException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public TemplateException() {
|
|
super();
|
|
}
|
|
|
|
public TemplateException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public TemplateException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public TemplateException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|