ViSP  2.10.0
vpMatrixException Class Reference

#include <vpMatrixException.h>

+ Inheritance diagram for vpMatrixException:

Public Types

enum  errorCodeEnum {
  constructionError, notInitializedError, notImplementedError, outOfRangeError,
  convergencyError, incorrectMatrixSizeError, forbiddenOperatorError, subMatrixError,
  matrixError, rankDeficient
}
 
enum  generalExceptionEnum {
  memoryAllocationError, memoryFreeError, functionNotImplementedError, ioError,
  cannotUseConstructorError, notImplementedError, divideByZeroError, dimensionError,
  fatalError, badValue, notInitialized
}
 

Public Member Functions

 vpMatrixException (const int id, const char *format,...)
 
 vpMatrixException (const int id, const std::string &msg)
 
 vpMatrixException (const int id)
 
int getCode (void)
 
const std::string & getStringMessage (void)
 
const char * getMessage (void)
 
const char * what () const throw ()
 

Protected Member Functions

void setMessage (const char *format, va_list args)
 

Protected Attributes

int code
 
std::string message
 

Detailed Description

error that can be emited by the vpMatrix class and its derivates

Examples:
testMatrixException.cpp.

Definition at line 69 of file vpMatrixException.h.

Member Enumeration Documentation

Lists the possible error than can be emmited while calling vpMatrix member.

Enumerator
constructionError 

error returns by a constructor

notInitializedError 

something is not initialized

notImplementedError 

function not implemented

outOfRangeError 

index out of range

convergencyError 

iterative algorithm doesn't converge (ex SVD)

incorrectMatrixSizeError 
forbiddenOperatorError 
subMatrixError 
matrixError 
rankDeficient 

Definition at line 76 of file vpMatrixException.h.

Enumerator
memoryAllocationError 
memoryFreeError 
functionNotImplementedError 
ioError 
cannotUseConstructorError 
notImplementedError 
divideByZeroError 
dimensionError 
fatalError 
badValue 

Used to indicate that a value is not in the allowed range.

notInitialized 

Used to indicate that a parameter is not initialized.

Definition at line 94 of file vpException.h.

Constructor & Destructor Documentation

vpMatrixException::vpMatrixException ( const int  id,
const char *  format,
  ... 
)
inline

Definition at line 96 of file vpMatrixException.h.

References vpException::setMessage().

vpMatrixException::vpMatrixException ( const int  id,
const std::string &  msg 
)
inline

Definition at line 104 of file vpMatrixException.h.

vpMatrixException::vpMatrixException ( const int  id)
inline

Definition at line 106 of file vpMatrixException.h.

Member Function Documentation

int vpException::getCode ( void  )
inherited

send the object code

Examples:
parallelPort.cpp, and ringLight.cpp.

Definition at line 112 of file vpException.cpp.

References vpException::code.

const char * vpException::getMessage ( void  )
inherited

send a pointer on the array of char related to the error string. Cannot be NULL.

Examples:
fernClassifier.cpp, tutorial-face-detector-live.cpp, tutorial-face-detector.cpp, tutorial-image-reader.cpp, and tutorial-video-reader.cpp.

Definition at line 101 of file vpException.cpp.

References vpException::message.

Referenced by vpTemplateTracker::trackPyr().

const std::string & vpException::getStringMessage ( void  )
inherited

send a reference (constant) related the error message (can be empty)

Definition at line 106 of file vpException.cpp.

References vpException::message.

const char * vpException::what ( ) const
throw (
)
inherited

Overloading of the what() method of std::exception to return the vpException message.

Returns
pointer on the array of char related to the error string.

Definition at line 123 of file vpException.cpp.

References vpException::message.

Referenced by vpKeyPoint::computePose().

Member Data Documentation

int vpException::code
protectedinherited

Contains the error code, see the errorCodeEnum table for details.

Definition at line 81 of file vpException.h.

Referenced by vpException::getCode().

std::string vpException::message
protectedinherited

Contains an error message (can be empty)

Definition at line 84 of file vpException.h.

Referenced by vpException::getMessage(), vpException::getStringMessage(), vpException::setMessage(), and vpException::what().