mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Initial commit
This commit is contained in:
commit
5cc189a169
32 changed files with 2565 additions and 0 deletions
35
common/exceptions/error.go
Normal file
35
common/exceptions/error.go
Normal file
|
@ -0,0 +1,35 @@
|
|||
package exceptions
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type Exception interface {
|
||||
error
|
||||
Cause() error
|
||||
}
|
||||
|
||||
type exception struct {
|
||||
message string
|
||||
cause error
|
||||
}
|
||||
|
||||
func (e exception) Error() string {
|
||||
if e.cause == nil {
|
||||
return e.message
|
||||
}
|
||||
return e.message + ":" + e.cause.Error()
|
||||
}
|
||||
|
||||
func (e exception) Cause() error {
|
||||
return e.cause
|
||||
}
|
||||
|
||||
func New(message ...any) error {
|
||||
return errors.New(fmt.Sprint(message...))
|
||||
}
|
||||
|
||||
func Cause(cause error, message ...any) Exception {
|
||||
return &exception{fmt.Sprint(message...), cause}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue