1: <?php
2: /*
3: * Copyright (c) 2016 Geraldo B. Landre
4: *
5: * See the file LICENSE for copying permission.
6: */
7: namespace utils;
8:
9: /**
10: *
11: * @author Geraldo B. Landre <geraldo at facom.ufms.br>
12: */
13: class ParserException extends \Exception {
14: public function __construct($message) {
15: parent::__construct($message, 0, NULL);
16: }
17: }
18: