module plist.exceptions; import core.exception; class PlistParsingException : Exception { this( string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null ) @safe pure nothrow @nogc { super( msg, file, line, next ); } }; class PlistSerdeException : Exception { this( string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null ) @safe pure nothrow @nogc { super( msg, file, line, next ); } };