1 /**
2  * Copyright: Copyright (c) 2011 Jacob Carlborg. All rights reserved.
3  * Authors: Jacob Carlborg
4  * Version: Initial created: Oct 1, 2011
5  * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
6  */
7 module dstep.core.Exceptions;
8 
9 class DStepException : Exception
10 {
11     this (string message, string file = __FILE__, size_t line = __LINE__)
12     {
13         super(message, file, line);
14     }
15 }