Error Types

About

For different situations different error classes exist. These different classes help to identify the nature of the error and allow to store additional information.

Built-in Types

The default error types are defined in the core.framework.

Note
In other frameworks various specialized error types exist.
To check the type of a given error one can use maxon::IsErrorOfType().

Errors about incorrect function arguments:

Errors about incorrect function implementations:

Errors about incorrect program flow:

Specialised Errors:

General Errors:

// This example function checks every element in the given array.
// If an element is invalid, an error is added to the AggregatedError.
//----------------------------------------------------------------------------------------
// This function replaces each element of the given array with its square root.
// @param[in,out] numbers An array of maxon::Float32 values.
// @return maxon::OK on success.
//----------------------------------------------------------------------------------------
static maxon::Result<void> SquareRootElements(maxon::BaseArray<maxon::Float32>& numbers)
{
// prepare AggregatedError
// loop through all elements of the given array
const maxon::Int count = numbers.GetCount();
for (maxon::Int i = 0; i < count; ++i)
{
maxon::Float32& number = numbers[i];
if (number >= 0)
{
// replace value with its square root
number = maxon::Sqrt(number);
}
else
{
// store error for invalid element
const maxon::String errorMsg = FormatString("Negative number at index @", i);
agg.AddError(maxon::IllegalArgumentError(MAXON_SOURCE_LOCATION, errorMsg)) iferr_return;
}
}
// if any errors were found, return the collected errors
if (agg.GetCount())
return agg;
return maxon::OK;
}
Py_ssize_t i
Definition: abstract.h:645
Py_ssize_t count
Definition: abstract.h:640
Definition: errorbase.h:126
Definition: basearray.h:412
MAXON_ATTRIBUTE_FORCE_INLINE Int GetCount() const
Definition: basearray.h:573
Definition: string.h:1235
Int64 Int
signed 32/64 bit int, size depends on the platform
Definition: apibase.h:188
float Float32
32 bit floating point value (float)
Definition: apibase.h:182
return OK
Definition: apibase.h:2690
MAXON_ATTRIBUTE_FORCE_INLINE Float32 Sqrt(Float32 val)
Calculates square root of a value. Note that the input must not be be negative, so that no exceptions...
Definition: apibasemath.h:266
#define MAXON_SOURCE_LOCATION
Definition: memoryallocationbase.h:67
#define FormatString(...)
Definition: string.h:2100
#define iferr_scope
Definition: resultbase.h:1384
#define iferr_return
Definition: resultbase.h:1519
// This example reads the AggregatedError returned by a function
// and prints all sub-errors.
const maxon::Result<void> res = SquareRootElements(data);
// check for errors
{
const maxon::Error error = res.GetError();
// check for AggregatedError
if (error.IsInstanceOf<maxon::AggregatedError>())
{
// get AggregatedError
const maxon::AggregatedError agg = maxon::Cast<maxon::AggregatedError>(error);
// loop through all sub-errors
for (const maxon::Error subError : agg)
{
DiagnosticOutput("Sub-Error: @", subError);
}
}
}
PyObject * error
Definition: codecs.h:206
Py_UCS4 * res
Definition: unicodeobject.h:1113
#define DiagnosticOutput(formatString,...)
Definition: debugdiagnostics.h:176
static const ERROR_FAILED FAILED
Definition: resultbase.h:68

Custom Error

All error types are based on maxon::ErrorInterface. It is possible to create custom error types based on that interface. See also Interface Basics.

A custom error interfaces is based on the maxon::ErrorInterface (see Error Class):

// This example shows the declaration of a custom error type.
// The custom error is able to store a custom error code.
// ---------------------------------------------------------------------
// Custom error class that stores an error code.
// ---------------------------------------------------------------------
class ExampleErrorInterface : MAXON_INTERFACE_BASES(maxon::ErrorInterface)
{
public:
{
*static_cast<typename S::DirectlyReferencedType::Hxx1::ReferenceClass*>(this) = S::DirectlyReferencedType::Hxx1::ErrObj::GetInstance()();
typename S::DirectlyReferencedType::Ptr e = this->MakeWritable(false).GetPointer();
e.SetCustomErrorCode(errorCode);
}
);
// custom methods
// ---------------------------------------------------------------------
// Stores an custom error code.
// ---------------------------------------------------------------------
// ---------------------------------------------------------------------
// Returns the stored custom error code.
// ---------------------------------------------------------------------
};
[error_custom_interface]
Definition: customerror.h:14
MAXON_METHOD maxon::Int GetCustomErrorCode() const
MAXON_METHOD void SetCustomErrorCode(maxon::Int errorCode)
MAXON_INTERFACE(ExampleErrorInterface, MAXON_REFERENCE_COPY_ON_WRITE, "net.maxonexample.error.example")
MAXON_ADD_TO_COPY_ON_WRITE_REFERENCE_CLASS(void Create(MAXON_SOURCE_LOCATION_DECLARATION, maxon::Int errorCode) { *static_cast< typename S::DirectlyReferencedType::Hxx1::ReferenceClass * >(this)=S::DirectlyReferencedType::Hxx1::ErrObj::GetInstance()();typename S::DirectlyReferencedType::Ptr e=this->MakeWritable(false).GetPointer();e.SetLocation(MAXON_SOURCE_LOCATION_FORWARD);e.SetCustomErrorCode(errorCode);})
static auto Create(ARGS &&... args)
Definition: apibase.h:2773
#define MAXON_SOURCE_LOCATION_FORWARD
Definition: memoryallocationbase.h:84
#define MAXON_REFERENCE_COPY_ON_WRITE(FREEIMPL)
Definition: interfacebase.h:1212
#define MAXON_METHOD
Definition: interfacebase.h:1001
#define MAXON_INTERFACE_BASES(...)
Definition: objectbase.h:1062
#define MAXON_SOURCE_LOCATION_DECLARATION
Definition: memoryallocationbase.h:77
Py_ssize_t * e
Definition: longobject.h:89

The registration or implementation of the custom error type can be simplified with these macros:

  • ::MAXON_ERROR_REGISTERX: Registers the implementation and publishes the error object.
  • MAXON_ERROR_IMPLEMENT_AND_REGISTER: Implements and registers a whole error interface that does not introduce additional methods.
// This example shows the implementation of a custom error type.
class ExampleErrorImpl : public maxon::Component<ExampleErrorImpl, ExampleErrorInterface>
{
// use ErrorObjectClass to implement basic error functionality
MAXON_COMPONENT(NORMAL, maxon::ErrorObjectClass);
public:
maxon::Result<void> CopyFrom(const ExampleErrorImpl& src)
{
_errorCode = src._errorCode;
return maxon::OK;
}
public:
MAXON_METHOD maxon::String GetMessage() const
{
return FormatString("Error Code is @", _errorCode);
}
// custom methods
MAXON_METHOD void SetCustomErrorCode(maxon::Int errorCode)
{
_errorCode = errorCode;
}
MAXON_METHOD maxon::Int GetCustomErrorCode() const
{
return _errorCode;
}
private:
maxon::Int _errorCode;
};
// register implementation
MAXON_COMPONENT_OBJECT_REGISTER(ExampleErrorImpl, ExampleErrorObject);
Definition: objectbase.h:2651
PyObject * src
Definition: abstract.h:305
@ NORMAL
Samples the surface as the user moves over it the SculptObject and returns a new hit point and normal...
#define MAXON_COMPONENT(KIND,...)
Definition: objectbase.h:2212
#define MAXON_COMPONENT_OBJECT_REGISTER(C,...)
Definition: objectbase.h:2473

The new error type can now easily be used:

// This example creates and returns an instance of the custom error.
static maxon::Result<void> CustomOperation()
{
// execute operation
const maxon::Int res = Operate();
// if no success, return error
if (res == -1)
return ExampleError(MAXON_SOURCE_LOCATION, res);
return maxon::OK;
}

Further Reading