X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexceptions.cc;h=c4c3d08151773f8e184e6a45f67c705165ec2f10;hb=27867be66579551018c926ed3339624e463c1b08;hp=f34cebbfe04a69f94fa2e07df3bb74aab5d41a51;hpb=9e4c091e6ef0f79fab10664e95240de2f14e5702;p=dcpomatic.git diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc index f34cebbfe..c4c3d0815 100644 --- a/src/lib/exceptions.cc +++ b/src/lib/exceptions.cc @@ -67,3 +67,15 @@ SubRipError::SubRipError (string saw, string expecting, boost::filesystem::path { } + +InvalidSignerError::InvalidSignerError () + : StringError (_("The certificate chain for signing is invalid")) +{ + +} + +ProgrammingError::ProgrammingError (string file, int line) + : StringError (String::compose (_("Programming error at %1:%2"), file, line)) +{ + +}