gojs/common/goerr.go
2025-07-19 10:09:09 +08:00

11 lines
126 B
Go

package common
type GoErr struct {
Message string
Stack []string
}
func (e *GoErr) Error() string {
return e.Message
}