Skip to main content

Error Handling

View as Markdown

Error Handling

What the SDK raises, when, and how to catch it.

What actually raises

SituationRaised
Bad API key / credentials during connect or loginAuthenticationException
Connection and transport failuresbuiltin ConnectionError (timeouts: asyncio.TimeoutError)
Data-pipe errors (open / write / close)PipeException
use() argument problems (neither filepath nor pipeline; both; bad types)ValueError
use() with a missing pipeline fileFileNotFoundError
Server rejects a pipeline start or a DAP requestRuntimeError
get_service('') / unknown service nameValueError / RuntimeError
send_files without an API key, or a missing fileRuntimeError / ValueError
Answer.getJson() on non-JSON contentValueError
from rocketride import RocketRideClient, AuthenticationException
from rocketride.core.exceptions import PipeException

try:
async with RocketRideClient(uri=uri, auth=auth) as client:
result = await client.use(filepath='pipeline.pipe')
await client.send(result['token'], data)
except AuthenticationException:
print('Bad credentials')
except (ValueError, FileNotFoundError) as e:
print(f'Bad pipeline arguments: {e}')
except PipeException as e:
print(f'Data transfer error: {e}')
except ConnectionError as e:
print(f'Transport failure: {e}')
except RuntimeError as e:
print(f'Server rejected the request: {e}')

AuthenticationException is raised on DAP auth failure. In persist mode the client catches it, calls on_connect_error, and does not retry — fix credentials and call connect() again.

The hierarchy

DAPException                    # Base DAP protocol error (has dap_result dict)
└── RocketRideException # Base for all RocketRide errors
├── ConnectionException # Reserved: transport failures raise builtin ConnectionError
│ └── AuthenticationException # Bad API key or credentials (actively raised)
├── PipeException # Data pipe errors (also subclasses RuntimeError)
├── ExecutionException # Reserved: defined but not currently raised
└── ValidationException # Reserved: defined but not currently raised

All exceptions in the hierarchy expose a dap_result dict with detailed server error context, plus code and hint:

  • code is the server's machine-readable classification, or None. Task failures carry one: TASK_NOT_REGISTERED (the token names no live task — never started, terminated, replaced, or the engine restarted), TASK_AMBIGUOUS, TASK_COMPLETED, TASK_STOPPED. Classify on code, not on the message text, which is written for people and may be reworded.
  • hint is troubleshooting text the SDK attached for a developer, or None. It is kept out of str(e) so an application can show the message to an end user without the developer checklist.
except PipeException as e:
if e.code == 'TASK_NOT_REGISTERED':
await restart_pipeline() # the task is gone; start a new one
else:
print(e) # safe to show
if e.hint:
log.debug(e.hint) # developer detail

PipeException also subclasses RuntimeError, so a broad except RuntimeError catches pipe failures too.

ConnectionException, ExecutionException, and ValidationException exist in rocketride.core.exceptions but the SDK does not currently raise them: transport failures surface as the builtin ConnectionError, and pipeline start and validation failures as the built-ins in the table above. Don't write handlers that rely on them.