]> git.street.me.uk Git - andy/gpx.git/blame - src/libgpx/libxmlexception.php
Initial commit
[andy/gpx.git] / src / libgpx / libxmlexception.php
CommitLineData
88564339
AS
1<?php
2/**
3 * libxmlexception.php
4 *
5 * Copyright 2018 Andy Street <andy@street.me.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 * MA 02110-1301, USA.
21 *
22 *
23 */
24
25namespace libgpx;
26
27use \LibXMLError;
28use \RuntimeException;
29
30/**
31 * An exception triggered by a libxml error.
32 *
33 * @author Andy Street <andy@street.me.uk>
34 */
35class LibXMLException extends RuntimeException
36{
37
38 /**
39 * The error that triggered this exception.
40 *
41 * @var LibXMLError
42 */
43 protected $xmlError;
44
45 /**
46 * Create a new exception.
47 *
48 * @param LibXMLError $error The error that triggered this exception.
49 */
50 public function __construct(LibXMLError $error)
51 {
52 parent::__construct($error->message, $error->code);
53 $this->xmlError = $error;
54 }
55
56 /**
57 * Fetch the error that triggered this exception.
58 *
59 * @return LibXMLError The error.
60 */
61 public function getLibXMLError()
62 {
63 return $this->xmlError;
64 }
65
66}