mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
// Copyright GoFrame gf Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package gerror provides rich functionalities to manipulate errors.
|
|
//
|
|
// For maintainers, please very note that,
|
|
// this package is quite a basic package, which SHOULD NOT import extra packages
|
|
// except standard packages and internal packages, to avoid cycle imports.
|
|
package gerror
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/errors/gcode"
|
|
)
|
|
|
|
// IEqual is the interface for Equal feature.
|
|
type IEqual interface {
|
|
Error() string
|
|
Equal(target error) bool
|
|
}
|
|
|
|
// ICode is the interface for Code feature.
|
|
type ICode interface {
|
|
Error() string
|
|
Code() gcode.Code
|
|
}
|
|
|
|
// IStack is the interface for Stack feature.
|
|
type IStack interface {
|
|
Error() string
|
|
Stack() string
|
|
}
|
|
|
|
// ICause is the interface for Cause feature.
|
|
type ICause interface {
|
|
Error() string
|
|
Cause() error
|
|
}
|
|
|
|
// ICurrent is the interface for Current feature.
|
|
type ICurrent interface {
|
|
Error() string
|
|
Current() error
|
|
}
|
|
|
|
// IUnwrap is the interface for Unwrap feature.
|
|
type IUnwrap interface {
|
|
Error() string
|
|
Unwrap() error
|
|
}
|
|
|
|
const (
|
|
// commaSeparatorSpace is the comma separator with space.
|
|
commaSeparatorSpace = ", "
|
|
)
|