Constructs a new exception object with the given message, the object's catalog, exception number, inner exception and inserts.

C# | Visual Basic | Visual C++ | F# |
public NBFatalException( string message, string catalog, long number, Exception inner, params Object[] inserts )
Public Sub New ( _ message As String, _ catalog As String, _ number As Long, _ inner As Exception, _ ParamArray inserts As Object() _ )

- message (String)
- The error message that explains the reason for the exception.
- catalog (String)
- The catalog that contains message number.
- number (Int64)
- The exception number.
- inner (Exception)
- An instance of Exception that describes the error that caused the current exception.
- inserts (array<Object>[]()[][])
- The exception inserts.

In this constructor the severity is defaulted to 'Error'.