1 /// I was wrong, this the most useless module.
2 module dpq.exception;
3 
4 class DPQException : Exception
5 {
6 	this(const string msg)
7 	{
8 		super(msg);
9 	}
10 }