ATLAS Offline Software
CrestException.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2019-2024 CERN for the benefit of the ATLAS collaboration
3  */
4 
5 namespace Crest
6 {
7 
8  class CrestException : public std::runtime_error
9  {
10  public:
11  CrestException(const std::string& what = "") : std::runtime_error(what) {}
12  };
13 
14 
16  {
17  public:
18  CrestConflictException(const std::string& what = "") : CrestException(what) {}
19  };
20 
21 }
Crest::CrestConflictException
Definition: CrestException.h:16
Crest::CrestConflictException::CrestConflictException
CrestConflictException(const std::string &what="")
Definition: CrestException.h:18
Crest
Definition: CrestApi.h:30
Crest::CrestException::CrestException
CrestException(const std::string &what="")
Definition: CrestException.h:11
python.ExitCodes.what
def what(code)
Definition: ExitCodes.py:73
Crest::CrestException
Definition: CrestException.h:9