Exception used by Fire when a Fire command cannot be executed. These exceptions are not raised by the Fire function, but rather are caught and added to the FireTrace.
| 175 | |
| 176 | |
| 177 | class FireError(Exception): |
| 178 | """Exception used by Fire when a Fire command cannot be executed. |
| 179 | |
| 180 | These exceptions are not raised by the Fire function, but rather are caught |
| 181 | and added to the FireTrace. |
| 182 | """ |
| 183 | |
| 184 | |
| 185 | class FireExit(SystemExit): # pylint: disable=g-bad-exception-name |
no outgoing calls
no test coverage detected