/usr/include/ITK-4.5/itkFEMException.h is in libinsighttoolkit4-dev 4.5.0-3.
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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#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.
* \ingroup ITKFEM
*/
class ITK_ABI_EXPORT FEMException : public itk::ExceptionObject
{
public:
/**
* Constructor. Must provide a string, that specifies name of
* the file where the exception occurred 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.
* \ingroup ITKFEM
*/
class ITK_ABI_EXPORT 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
* accommodate this differences. Currently they are ignored.
* \ingroup ITKFEM
*/
class ITK_ABI_EXPORT 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.
* \ingroup ITKFEM
*/
class ITK_ABI_EXPORT 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_GlobalNumber;
};
/**
* \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.
* \ingroup ITKFEM
*/
class ITK_ABI_EXPORT 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
|