FileSystemException class abstract
Common file system exception.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- message → String
-
Message describing the error. This does not include any detailed
information form the underlying OS error. Check osError for
that information.
no setter
- osError → OSError?
-
The underlying OS error. Can be
null
if the exception is not raised due to an OS error.no setter - path → String?
-
The file system path on which the error occurred. Can be
null
if the exception does not relate directly to a file system path.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → int?
-
Common status code
no setter
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- statusAccessError → const int
- Generic access error.
- statusAlreadyExists → const int
- File already exists.
- statusInvalidArgument → const int
- Invalid argument.
- statusIsADirectory → const int
- Is a directory.
- statusNotADirectory → const int
- Not a directory.
- statusNotEmpty → const int
- Directory not empty.
- statusNotFound → const int
- File not found.