PocketFlowError represents an error originating from the PocketFlow library.
| 42 | |
| 43 | // PocketFlowError represents an error originating from the PocketFlow library. |
| 44 | type PocketFlowError struct { |
| 45 | Message string |
| 46 | Cause error |
| 47 | } |
| 48 | |
| 49 | func (e *PocketFlowError) Error() string { |
| 50 | if e.Cause != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected