Dart API Referencedart:ioProcessException

ProcessException Class

Implements

Exception

Constructors

Code const ProcessException([String message, int errorCode = 0]) #

const ProcessException([String this.message, int this.errorCode = 0]);

Methods

Code String toString() #

String toString() => "ProcessException: $message ($errorCode)";

Fields

Code final int errorCode #

Contains the OS error code for the process exception if any.

final int errorCode;

Code final String message #

Contains the system message for the process exception if any.

final String message;