Dart Documentationdistributed_dartWorkDirInUseException

WorkDirInUseException class

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

Implements

Exception

Constructors

const WorkDirInUseException([String message = ""]) #

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 WorkDirInUseException([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() => "WorkDirInUseException: $message";