Returns an execution error for the currently execution function.
(&self, message: M)
| 50 | |
| 51 | /// Returns an execution error for the currently execution function. |
| 52 | pub fn error<M: ToString>(&self, message: M) -> ExecutionError { |
| 53 | ExecutionError::function_error(self.name, message) |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | /// Calculates the size of either the target, or the provided args depending on how |
no outgoing calls
no test coverage detected