libzypp  17.31.31
filecheckexception.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
9 
10 #ifndef ZYPP_MEDIA_FILECHECKEXCEPTION_H
11 #define ZYPP_MEDIA_FILECHECKEXCEPTION_H
12 
13 #include <zypp-core/base/Exception.h>
14 
15 namespace zypp {
16 
18  {
19  public:
20  FileCheckException(const std::string &msg)
21  : Exception(msg)
22  {}
23  };
24 
26  {
27  public:
28  CheckSumCheckException(const std::string &msg)
30  {}
31  };
32 
34  {
35  public:
36  SignatureCheckException(const std::string &msg)
38  {}
39  };
40 
41 }
42 
43 #endif // ZYPP_MEDIA_FILECHECKEXCEPTION_H
CheckSumCheckException(const std::string &msg)
Base class for Exception.
Definition: Exception.h:145
SignatureCheckException(const std::string &msg)
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
FileCheckException(const std::string &msg)
const std::string & msg() const
Return the message string provided to the ctor.
Definition: Exception.h:195