Home | History | Annotate | Download | only in 7z

Lines Matching defs:ThrowException

108 static void ThrowException() { throw CInArchiveException(); }

109 static inline void ThrowEndOfData() { ThrowException(); }
110 static inline void ThrowUnsupported() { ThrowException(); }
111 static inline void ThrowIncorrect() { ThrowException(); }
112 static inline void ThrowUnsupportedVersion() { ThrowException(); }
128 static void ThrowException(CInArchiveException::CCauseType c) { throw CInArchiveException(c); }
129 static void ThrowEndOfData() { ThrowException(CInArchiveException::kEndOfData); }
130 static void ThrowUnsupported() { ThrowException(CInArchiveException::kUnsupported); }
131 static void ThrowIncorrect() { ThrowException(CInArchiveException::kIncorrect); }
132 static void ThrowUnsupportedVersion() { ThrowException(CInArchiveException::kUnsupportedVersion); }