]> git.sesse.net Git - casparcg/blobdiff - modules/psd/misc.h
* psd: support for extracting scaling-data of text-layer, and extracting sheet-color...
[casparcg] / modules / psd / misc.h
index 9651f6becc17e8cdfe31883fbbf188e03feea2c7..886c91bbed8bf11125ba418c0573a149dc9abc9b 100644 (file)
@@ -75,6 +75,11 @@ struct rect
 class PSDFileFormatException : public std::exception
 {
 public:
+       PSDFileFormatException() : std::exception()
+       {}
+       explicit PSDFileFormatException(const char* msg) : std::exception(msg)
+       {}
+
        virtual ~PSDFileFormatException()
        {}
        virtual const char *what() const