1 module dfl.exception;
2 
3 import dfl.internal.dlib;
4 
5 class DflException: Exception {
6    this(Dstring msg, string file = __FILE__, int line = __LINE__) {
7       super(msg, file, line);
8    }
9 }
10