1: <?php
2: /*
3: * Copyright (c) 2016 Geraldo B. Landre
4: *
5: * See the file LICENSE for copying permission.
6: */
7: namespace pgn\exceptions;
8:
9: use Exception;
10:
11: class PGNException extends Exception{
12: public function __construct($message) {
13: parent::__construct($message, 0, null);
14: }
15: }
16: