DestinationUnreachableException constructor

DestinationUnreachableException([
  1. String _message = 'Destination not reachable'
])

Creates a DestinationUnreachableException object.

Displays the exception _message if it is given, otherwise "Destination not reachable" is set.

Implementation

DestinationUnreachableException(
    [this._message = 'Destination not reachable']);