Dart API Referencedart:ioDecoderException

DecoderException class

class DecoderException implements Exception {
  const DecoderException([String this.message]);
  String toString() => "DecoderException: $message";
  final String message;
}

Implements

Exception

Constructors

const DecoderException([String message]) #

const DecoderException([String this.message]);

Properties

final String message #

final String message;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "DecoderException: $message";