mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 07:27:33 +08:00
11 lines
216 B
Go
11 lines
216 B
Go
package errs
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Error codes related to data management
|
|
var (
|
|
ErrDataExportNotAllowed = NewNormalError(NormalSubcategoryDataManagement, 1, http.StatusBadRequest, "data export not allowed")
|
|
)
|