/usr/include/InsightToolkit/Numerics/FEM/itkFEMException.h is in libinsighttoolkit3-dev 3.20.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | /*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkFEMException.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkFEMException_h
#define __itkFEMException_h
#include <typeinfo>
#include <string>
#include "itkMacro.h"
namespace itk {
namespace fem {
/**
* \file itkFEMException.h
* \brief Declaration of several exception classes that are used
within the FEM code.
*/
/**
* \class FEMException
* \brief Base class for all exception's that can occur within FEM classes.
*/
class FEMException : public itk::ExceptionObject
{
public:
/**
* Constructor. Must provide a string, that specifies name of
* the file where the exception occured and an integer for the
* line number. An optional argument specifies the location
* (usually the name of the class and member function). Normally
* you should use __FILE__ and __LINE__ macros to specify file name
* and line number.
*/
FEMException(const char *file, unsigned int lineNumber, std::string location="Unknown");
/** Virtual destructor needed for subclasses. Has to have empty throw(). */
virtual ~FEMException() throw() {}
/** Type related information. */
itkTypeMacro(FEMException, ExceptionObject);
};
/**
* \class FEMExceptionIO
* \brief Base class for all IO exception's that can occur within FEM classe.
*
* This class is normally used when reading or writing objects from/to stream.
*/
class FEMExceptionIO : public FEMException
{
public:
/**
* Constructor. In order to construct this exception object, four parameters
* must be provided: file, lineNumber, location and a detailed description
* of the exception.
*/
FEMExceptionIO(const char *file, unsigned int lineNumber, std::string location, std::string moreDescription);
/** Virtual destructor needed for subclasses. Has to have empty throw(). */
virtual ~FEMExceptionIO() throw() {}
/** Type related information. */
itkTypeMacro(FEMExceptionIO,FEMException);
};
/**
* \class FEMExceptionWrongClass
* \brief Bad object exception.
*
* This exception occures, when a the pointer that was passed to a
* function or member, was pointing to the wrong class of object.
* Usially this means that the dynamic_cast operator failed.
* This exception object is normally generated by catching the
* std::bad_cast exception.
*
* FIXME: Note that there are big differences between compilers
* when it comes to catching standard exceptions. MSVC, for
* example DOESN'T properly catch std::bad_cast generated by
* a failed dynamic_cast operator. It does, however catch the
* std:exception. Update the bad_cast in ALL files to
* accomodate this differences. Currently they are ignored.
*/
class FEMExceptionWrongClass : public FEMException
{
public:
FEMExceptionWrongClass(const char *file, unsigned int lineNumber, std::string location);
/** Virtual destructor needed for subclasses. Has to have empty throw(). */
virtual ~FEMExceptionWrongClass() throw() {}
/** Type related information. */
itkTypeMacro(FEMExceptionWrongClass,FEMException);
};
/**
* \class FEMExceptionObjectNotFound
* \brief Object not found exception.
*
* This exception occures, when a search for an object with given
* global number was unsuccessful.
*/
class FEMExceptionObjectNotFound : public FEMException
{
public:
FEMExceptionObjectNotFound(const char *file, unsigned int lineNumber, std::string location, std::string baseClassName, int GN);
/** Virtual destructor needed for subclasses. Has to have empty throw(). */
virtual ~FEMExceptionObjectNotFound() throw() {}
/** Type related information. */
itkTypeMacro(FEMExceptionObjectNotFound,FEMException);
/**
* Base class of the searched object.
*/
std::string m_baseClassName;
int m_GN;
};
/**
* \class FEMExceptionSolution
* \brief Base class for all exceptions that can occur when solving FEM problem.
*
* This class is normally used when an error occurs while the problem is
* already in memory and something went wrong while trying to solve it.
*/
class FEMExceptionSolution : public FEMException
{
public:
/**
* Constructor. In order to construct this exception object, four parameters
* must be provided: file, lineNumber, location and a detailed description
* of the exception.
*/
FEMExceptionSolution(const char *file, unsigned int lineNumber, std::string location, std::string moreDescription);
/** Virtual destructor needed for subclasses. Has to have empty throw(). */
virtual ~FEMExceptionSolution() throw() {}
/** Type related information. */
itkTypeMacro(FEMExceptionSolution,FEMException);
};
}} // end namespace itk::fem
#endif // #ifndef __itkFEMException_h
|