Advertisement
Guest User

Untitled

a guest
Jul 6th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.25 KB | None | 0 0
  1. class MyException : Exception
  2. {
  3.     public
  4.     {
  5.         @safe pure nothrow this(string message, string file =__FILE__, size_t line = __LINE__, Throwable next = null)
  6.         {
  7.             super(message, file, line, next);
  8.         }
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement