1 /// 2 module dpq2.exception; 3 4 /// Base for all dpq2 exceptions classes 5 class Dpq2Exception : Exception 6 { 7 this(string msg, string file, size_t line) pure @safe 8 { 9 super(msg, file, line); 10 } 11 }