mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
26 lines
497 B
Go
26 lines
497 B
Go
package util
|
|
|
|
// type marker for exceptions
|
|
type Exception struct {
|
|
Error error
|
|
}
|
|
|
|
// Throw panics with err wrapped properly so that it can be catched by Catch.
|
|
func Throw(err error) {
|
|
panic(Exception{err})
|
|
}
|
|
|
|
// Catch tries to catch an error thrown by Throw and stop the panic. If the
|
|
// panic is not caused by Throw, the panic is not stopped.
|
|
func Catch(perr *error) {
|
|
r := recover()
|
|
if r == nil {
|
|
return
|
|
}
|
|
if exc, ok := r.(Exception); ok {
|
|
*perr = exc.Error
|
|
} else {
|
|
panic(r)
|
|
}
|
|
}
|