MethodStreamSerializableException class

A serializable exception sent over a method stream.

Inheritance
Implemented types

Constructors

MethodStreamSerializableException(Map data, SerializationManager serializationManager)
Creates a new MethodStreamSerializableException. The exception must be a serializable exception processed by the SerializationManager.wrapWithClassName method.

Properties

connectionId → UuidValue
The connection id that uniquely identifies the stream.
final
endpoint → String
The endpoint the message is sent to.
final
exception → SerializableException
The serializable exception sent.
final
hashCode → int
The hash code for this object.
no setterinherited
method → String
The method the message is sent to.
final
parameter → String?
The parameter the message is sent to. If this is null the message is sent to the return stream of the method.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
override

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

buildMessage({required String endpoint, required String method, required UuidValue connectionId, String? parameter, required dynamic object, required SerializationManager serializationManager}) → String
Builds a MethodStreamSerializableException message. The exception must be a serializable exception processed by the SerializationManager.wrapWithClassName method.