1 /**
2  * Proleptic Gregorian calendar exception
3  *
4  * License:   $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
5  * Copyright: Maxim Freck, 2016–2017.
6  * Authors:   Maxim Freck <maxim@freck.pp.ru>
7  */
8 module pgc.exception;
9 
10 /// Library exception
11 class PgcException : Exception {
12 	/// constructor
13 	pure nothrow this(string s, string fn = __FILE__, size_t ln = __LINE__) @safe
14 	{
15 		super(s, fn, ln);
16 	}
17 }