ATLAS Offline Software
Loading...
Searching...
No Matches
CoraCoolException.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef CORACOOL_CORACOOLEXCEPTION_H
6#define CORACOOL_CORACOOLEXCEPTION_H
7// CoraCool exception base class - simply derive from cool::Exception
8// so clients can catch cool::Exception and get both cool & CoraCool exceptions
9// Richard Hawkings, started 10/2006
10
11#include "CoolKernel/Exception.h"
12
13class CoraCoolException : public cool::Exception {
14 public:
15 CoraCoolException(const std::string& message, const std::string& domain) :
16 cool::Exception(message,domain) {};
17
18 virtual ~CoraCoolException() throw() {};
19};
20
21#endif // CORACOOL_CORACOOLEXCEPTION_H
CoraCoolException(const std::string &message, const std::string &domain)