mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-05-10 01:48:22 +00:00
8 lines
205 B
Go
8 lines
205 B
Go
package passbolt
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrAPIResponseErrorStatusCode = errors.New("Error API JSON Response Status")
|
|
ErrAPIResponseUnknownStatusCode = errors.New("Unknown API JSON Response Status")
|
|
)
|