NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkIOException.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef niftkIOException_h
16 #define niftkIOException_h
17 
18 #include "niftkExceptionObject.h"
19 
20 namespace niftk
21 {
22 
27 {
28 public:
29  IOException(const std::string &what) : ExceptionObject(what) {}
30 };
31 
32 } // end namespace
33 
34 #endif
IOException(const std::string &what)
Definition: niftkIOException.h:29
Basic NIFTK exception class.
Definition: niftkExceptionObject.h:27
Definition: niftkExceptionObject.h:21
GLsizei const GLcharARB ** string
Definition: glew.h:5194
Exceptions for Filesystem, Network, ... I/O.
Definition: niftkIOException.h:26