a032252163bf79075c26aa408ad7ee5405d9107e
[libsub.git] / src / exceptions.h
1 /*
2     Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef LIBSUB_EXCEPTIONS_H
21 #define LIBSUB_EXCEPTIONS_H
22
23 #include <list>
24 #include <stdexcept>
25 #include <string>
26 #include <vector>
27
28 namespace sub {
29
30 /** @class XMLError
31  *  @brief An error raised when reading an XML file.
32  */
33 class XMLError : public std::runtime_error
34 {
35 public:
36         XMLError (std::string const & message)
37                 : std::runtime_error (message)
38         {}
39 };
40
41 /** @class STLError
42  *  @brief An error raised when reading a binary STL file.
43  */
44 class STLError : public std::runtime_error
45 {
46 public:
47         STLError (std::string const & message)
48                 : std::runtime_error (message)
49         {}
50 };
51
52 /** @class SubripError
53  *  @brief An error raised when reading a Subrip file.
54  */
55 class SubripError : public std::runtime_error
56 {
57 public:
58         SubripError (std::string saw, std::string expecting, std::list<std::string> context);
59         ~SubripError () throw () {}
60
61         std::list<std::string> context () const {
62                 return _context;
63         }
64
65 private:
66         std::list<std::string> _context;
67 };
68
69 class SSAError : public std::runtime_error
70 {
71 public:
72         SSAError (std::string message)
73                 : std::runtime_error(message)
74         {}
75 };
76
77 class MXFError : public std::runtime_error
78 {
79 public:
80         MXFError (std::string const & message)
81                 : std::runtime_error (message)
82         {}
83 };
84
85 class UnknownFrameRateError : public std::runtime_error
86 {
87 public:
88         UnknownFrameRateError ()
89                 : std::runtime_error ("unknown frame rate")
90         {}
91 };
92
93 class DCPError : public std::runtime_error
94 {
95 public:
96         DCPError (std::string const & message)
97                 : std::runtime_error (message)
98         {}
99 };
100
101 class ProgrammingError : public std::runtime_error
102 {
103 public:
104         ProgrammingError (std::string file, int line);
105 };
106
107 }
108
109 #endif