1
0
mirror of synced 2026-04-14 12:28:38 +08:00

!6 D语言移植

* Porting to D
* The pthread needed.
This commit is contained in:
BitWorld
2021-04-08 21:04:43 +08:00
committed by yitter
parent b3a77a2824
commit a82d9cb063
18 changed files with 768 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
/*
* 版权属于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));
// }
}