File: reffileexception.h

package info (click to toggle)
aoflagger 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,000 kB
  • sloc: cpp: 67,891; python: 497; sh: 242; makefile: 22
file content (15 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef AO_REFFILEEXCEPTION_H
#define AO_REFFILEEXCEPTION_H

#include <stdexcept>

namespace AOTools {
class RefFileException : public std::runtime_error {
 public:
  RefFileException() : std::runtime_error("Exception in reference file") {}
  explicit RefFileException(const std::string& message)
      : std::runtime_error(message) {}
};
}  // namespace AOTools

#endif