Raised when a symbol() call contains a non-existant symbol.
| 343 | |
| 344 | |
| 345 | class SymbolNotFound(ZiplineError): |
| 346 | """ |
| 347 | Raised when a symbol() call contains a non-existant symbol. |
| 348 | """ |
| 349 | msg = """ |
| 350 | Symbol '{symbol}' was not found. |
| 351 | """.strip() |
| 352 | |
| 353 | |
| 354 | class RootSymbolNotFound(ZiplineError): |
no outgoing calls
no test coverage detected