()
| 632 | } |
| 633 | |
| 634 | func (o *Error) String() string { |
| 635 | if o.Value != nil { |
| 636 | return fmt.Sprintf("error: %s", o.Value.String()) |
| 637 | } |
| 638 | return "error" |
| 639 | } |
| 640 | |
| 641 | // IsFalsy returns true if the value of the type is falsy. |
| 642 | func (o *Error) IsFalsy() bool { |