1
0
This commit is contained in:
otya128
2016-02-23 23:05:24 +09:00
parent 872a51f7cf
commit 8e1860461a
4 changed files with 44 additions and 5 deletions

View File

@@ -114,4 +114,12 @@ class CantUseFromDirectMode : SmileBasicError
super("Can't use from direct mode");
}
}
class CantUseInProgram : SmileBasicError
{
this(wstring func)
{
this.errnum = 44;
super("Can't use in program");
}
}