libzypp  17.32.4
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 
14 
15 namespace zypp {
16 
18  {
19  public:
20  FileCheckException(std::string msg)
21  : Exception(std::move(msg))
22  {}
23  };
24 
26  {
27  public:
29  : FileCheckException(std::move(msg))
30  {}
31  };
32 
34  {
35  public:
37  : FileCheckException(std::move(msg))
38  {}
39  };
40 
41 }
42 
43 #endif // ZYPP_MEDIA_FILECHECKEXCEPTION_H
SignatureCheckException(std::string msg)
CheckSumCheckException(std::string msg)
Definition: Arch.h:363
Base class for Exception.
Definition: Exception.h:146
FileCheckException(std::string msg)
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19
const std::string & msg() const
Return the message string provided to the ctor.
Definition: Exception.h:196