Remove DCP subtitle support.
[libsub.git] / src / exceptions.h
index 5995942b1ec8a949febbe186f1e2e7bbb8272588..1895f110433f88f389193f4a780e8f6148276354 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef LIBSUB_EXCEPTIONS_H
 #define LIBSUB_EXCEPTIONS_H
 
+#include <list>
 #include <stdexcept>
 #include <string>
+#include <vector>
 
 namespace sub {
 
-class MessageError : public std::exception
-{
-public:
-       MessageError (std::string const & message)
-               : _message (message) {}
-       ~MessageError () throw () {}
-
-       /** @return error message */
-       char const * what () const throw () {
-               return _message.c_str ();
-       }
-
-private:
-       /** error message */
-       std::string _message;
-};
-
 /** @class XMLError
  *  @brief An error raised when reading an XML file.
  */
-class XMLError : public MessageError
+class XMLError : public std::runtime_error
 {
 public:
        XMLError (std::string const & message)
-               : MessageError (message)
+               : std::runtime_error (message)
        {}
 };
 
 /** @class STLError
  *  @brief An error raised when reading a binary STL file.
  */
-class STLError : public MessageError
+class STLError : public std::runtime_error
 {
 public:
        STLError (std::string const & message)
-               : MessageError (message)
+               : std::runtime_error (message)
        {}
 };
 
 /** @class SubripError
  *  @brief An error raised when reading a Subrip file.
  */
-class SubripError : public MessageError
+class SubripError : public std::runtime_error
 {
 public:
-       SubripError (std::string saw, std::string expecting)
-               : MessageError ("Error in SubRip file: saw " + saw + " while expecting " + expecting)
+       SubripError (std::string saw, std::string expecting, std::list<std::string> context);
+       ~SubripError () throw () {}
+
+       std::list<std::string> context () const {
+               return _context;
+       }
+
+private:
+       std::list<std::string> _context;
+};
+
+
+/** @class WebVTTError
+ *  @brief An error raised when reading a WebVTT file.
+ */
+class WebVTTError : public std::runtime_error
+{
+public:
+       WebVTTError(std::string message)
+               : std::runtime_error(message.c_str())
        {}
+
+       WebVTTError(std::string saw, std::string expecting, std::list<std::string> context);
+
+       ~WebVTTError() throw () {}
+
+       std::list<std::string> context() const {
+               return _context;
+       }
+
+private:
+       std::list<std::string> _context;
 };
 
-class MXFError : public MessageError
+
+class SSAError : public std::runtime_error
 {
 public:
-       MXFError (std::string const & message)
-               : MessageError (message)
+       SSAError (std::string message)
+               : std::runtime_error(message)
        {}
 };
 
-class UnknownFrameRateError : public MessageError
+class MXFError : public std::runtime_error
 {
 public:
-       UnknownFrameRateError ()
-               : MessageError ("unknown frame rate")
+       MXFError (std::string const & message)
+               : std::runtime_error (message)
        {}
 };
 
-class DCPError : public MessageError
+class UnknownFrameRateError : public std::runtime_error
 {
 public:
-       DCPError (std::string const & message)
-               : MessageError (message)
+       UnknownFrameRateError ()
+               : std::runtime_error ("unknown frame rate")
        {}
 };
 
-class ProgrammingError : public MessageError
+class ProgrammingError : public std::runtime_error
 {
 public:
        ProgrammingError (std::string file, int line);