FITSError.h
1//-*-C++-*-
2/***************************************************************************
3 *
4 * Copyright (C) 2003 by Willem van Straten
5 * Licensed under the Academic Free License version 2.1
6 *
7 ***************************************************************************/
8
9#ifndef __FITSError_h
10#define __FITSError_h
11
12#include "Error.h"
13
14class FITSError : public Error {
15
16 public:
17
19 FITSError (int status, const char* func, const char* msg=0, ...);
20
22 FITSError (int status, const char* func, const std::string& msg);
23
25 ~FITSError () {}
26
27};
28
29#endif
A convenient exception handling class.
Definition Error.h:54

Generated using doxygen 1.14.0