package com.aionemu.gameserver.utils.idfactory;
/**
* Exception thrown by IDFactory to indicate errors related to ID generation and management.
* This is a subclass of Error, which indicates serious problems that a reasonable application
* should not try to catch.
*
* Typically, this exception is thrown when an illegal or unexpected operation is attempted
* in the IDFactory class.
*
* @author SoulKeeper
*/
public class IDFactoryError extends Error {
private static final long serialVersionUID = 6945059882804355687L;
public IDFactoryError(String message) {
super(message);
}
public IDFactoryError(String message, Throwable cause) {
super(message, cause);
}
public IDFactoryError(Throwable cause) {
super(cause);
}
}
순위 | 닉네임 | 포인트 |
---|---|---|
1 |
![]() |
102,949 |
2 |
![]() |
63,733 |
3 |
![]() |
51,771 |
4 |
![]() |
36,923 |
5 |
![]() |
35,011 |
6 |
![]() |
29,470 |
7 |
![]() |
29,077 |
8 |
![]() |
28,199 |
9 |
![]() |
26,731 |
10 |
![]() |
17,020 |