Files
ezbookkeeping/pkg/errs/logging.go
T

11 lines
192 B
Go

package errs
import (
"net/http"
)
// Error codes related to logging
var (
ErrLoggingError = NewSystemError(SystemSubcategoryLogging, 0, http.StatusInternalServerError, "logging error")
)