11 lines
243 B
Go
11 lines
243 B
Go
package errs
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Error codes related to user external authentication
|
|
var (
|
|
ErrUserExternalAuthNotFound = NewNormalError(NormalSubcategoryUserExternalAuth, 0, http.StatusBadRequest, "user external auth is not found")
|
|
)
|