1
0
mirror of synced 2026-02-19 03:17:56 +08:00
Files
SnowFlake-IdGenerator/D/source/yitter/contract/IdGeneratorException.d
BitWorld a82d9cb063 !6 D语言移植
* Porting to D
* The pthread needed.
2021-04-08 21:04:43 +08:00

30 lines
553 B
D
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 版权属于yitter(yitter@126.com)
* 开源地址https://gitee.com/yitter/idgenerator
*/
module yitter.contract.IdGeneratorException;
class IdGeneratorException : Exception {
// this() {
// super();
// }
this(string message) {
super(message);
}
// this(Throwable cause) {
// super(cause);
// }
this(string message, Throwable cause) {
super(message, cause);
}
// this(string msgFormat, Object... args) {
// super(string.format(msgFormat, args));
// }
}