object.throwable.to_string
- multiple declarations
- Function Throwable.toString
- Function Throwable.toString
- Function Throwable.toString
- Function Throwable.toString
- Function Throwable.toString
- Function Throwable.toString
Function Throwable.toString
Overrides
and returns the error message.
Internally this forwards to the Object.toString
overload that
takes a sink delegate.
toString
Prototype
override string toString();
Function Throwable.toString
The Throwable
hierarchy uses a toString
overload that takes a
sink
delegate to avoid GC allocations, which cannot be
performed in certain error situations. Override this
method to customize the error message.
toString
Prototype
void toString( void delegate(const(char[])) sink ) const;
Function Throwable.toString
Overrides
and returns the error message.
Internally this forwards to the Object.toString
overload that
takes a sink delegate.
toString
Prototype
override string toString();
Function Throwable.toString
The Throwable
hierarchy uses a toString
overload that takes a
sink
delegate to avoid GC allocations, which cannot be
performed in certain error situations. Override this
method to customize the error message.
toString
Prototype
void toString( void delegate(const(char[])) sink ) const;
Function Throwable.toString
Overrides
and returns the error message.
Internally this forwards to the Object.toString
overload that
takes a sink delegate.
toString
Prototype
override string toString();
Function Throwable.toString
The Throwable
hierarchy uses a toString
overload that takes a
sink
delegate to avoid GC allocations, which cannot be
performed in certain error situations. Override this
method to customize the error message.
toString
Prototype
void toString( void delegate(const(char[])) sink ) const;
Authors
Walter Bright, Sean Kelly