diff --git a/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.cpp b/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.cpp new file mode 100644 index 0000000000..299c95c703 --- /dev/null +++ b/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.cpp @@ -0,0 +1,17 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#include "mitkIGTIOException.h" diff --git a/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.h b/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.h new file mode 100644 index 0000000000..5c526c97f9 --- /dev/null +++ b/Modules/IGT/IGTExceptionHandling/mitkIGTIOException.h @@ -0,0 +1,34 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#ifndef IGTIOEXCEPTION_H_INCLUDED +#define IGTIOEXCEPTION_H_INCLUDED + +#include "mitkIGTException.h" +#include "mitkExceptionMacro.h" + +namespace mitk { + /**Documentation + * \brief An object of this class represents an exception of the MITK-IGT module which are releated to the hardware (e.g. connection problems, etc.). + * + * \ingroup IGT + */ class MitkIGT_EXPORT IGTIOException : public mitk::IGTException + { + public: + mitkExceptionClassMacro(IGTIOException,mitk::IGTException); + }; +} // namespace mitk +#endif