We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb92db2 commit ae3b16bCopy full SHA for ae3b16b
1 file changed
source/commandr/program.d
@@ -34,7 +34,6 @@ import commandr.utils;
34
import std.algorithm : all, reverse, map, filter;
35
import std.ascii : isAlphaNum;
36
import std.array : array;
37
-import std.exception : basicExceptionCtors;
38
import std.range : empty, chainRanges = chain;
39
import std.string : format;
40
@@ -46,7 +45,9 @@ import std.string : format;
46
45
*/
47
public class InvalidProgramException : Exception {
48
/// Creates new instance of InvalidProgramException
49
- mixin basicExceptionCtors;
+ public this(string msg) nothrow pure @safe {
+ super(msg);
50
+ }
51
}
52
53
/**
0 commit comments