Initializes a new instance of the
Error class.
Namespace: Akka.EventAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic Error(
Exception cause,
string logSource,
Type logClass,
Object message
)
Public Sub New (
cause As Exception,
logSource As String,
logClass As Type,
message As Object
)
public:
Error(
Exception^ cause,
String^ logSource,
Type^ logClass,
Object^ message
)
new :
cause : Exception *
logSource : string *
logClass : Type *
message : Object -> Error
Parameters
- cause
- Type: SystemException
The cause. - logSource
- Type: SystemString
The log source. - logClass
- Type: SystemType
The log class. - message
- Type: SystemObject
The message.
See Also