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.

Inheritance
Available extensions

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

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toJS String
no setter
value String
final

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.