Dart Documentationclean_sync.serverDiffNotPossibleException

DiffNotPossibleException class

class DiffNotPossibleException implements Exception {
  final String msg;
  const DiffNotPossibleException([this.msg]);
  String toString() => msg == null ? 'DiffNotPossible' : msg;
}

Implements

Exception

Constructors

const DiffNotPossibleException([String msg]) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
const DiffNotPossibleException([this.msg]);

Properties

final String msg #

final String msg

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => msg == null ? 'DiffNotPossible' : msg;