ProviderError enum
Error codes used by providing extensions in response to requests as well
as in case of errors when calling methods of the API. For success,
"OK"
must be used.
Values
- ok → const ProviderError
-
const ProviderError('OK')
- failed → const ProviderError
-
const ProviderError('FAILED')
- inUse → const ProviderError
-
const ProviderError('IN_USE')
- exists → const ProviderError
-
const ProviderError('EXISTS')
- notFound → const ProviderError
-
const ProviderError('NOT_FOUND')
- accessDenied → const ProviderError
-
const ProviderError('ACCESS_DENIED')
- tooManyOpened → const ProviderError
-
const ProviderError('TOO_MANY_OPENED')
- noMemory → const ProviderError
-
const ProviderError('NO_MEMORY')
- noSpace → const ProviderError
-
const ProviderError('NO_SPACE')
- notADirectory → const ProviderError
-
const ProviderError('NOT_A_DIRECTORY')
- invalidOperation → const ProviderError
-
const ProviderError('INVALID_OPERATION')
- security → const ProviderError
-
const ProviderError('SECURITY')
- abort → const ProviderError
-
const ProviderError('ABORT')
- notAFile → const ProviderError
-
const ProviderError('NOT_A_FILE')
- notEmpty → const ProviderError
-
const ProviderError('NOT_EMPTY')
- invalidUrl → const ProviderError
-
const ProviderError('INVALID_URL')
- io → const ProviderError
-
const ProviderError('IO')
Properties
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
Static Methods
-
fromJS(
String value) → ProviderError
Constants
-
values
→ const List<
ProviderError> - A constant List of the values in this enum, in order of their declaration.