mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-18 00:59:38 +00:00
10 lines
387 B
Go
10 lines
387 B
Go
package status
|
|
|
|
import "errors"
|
|
|
|
// ErrCanceled signals that a worker or walk callback was interrupted by Cancel().
|
|
var ErrCanceled = errors.New(Canceled)
|
|
|
|
// ErrInsufficientStorage signals that an operation cannot proceed because the
|
|
// configured quota is exhausted or the storage path is critically low on free disk space.
|
|
var ErrInsufficientStorage = errors.New(InsufficientStorage)
|