Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

catch and raise PR for WalletNotFoundError on wrong cred_id for creat… #700

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions aries_cloudagent/protocols/present_proof/v1_0/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

from ....connections.models.connection_record import ConnectionRecord
from ....holder.base import BaseHolder, HolderError
from ....indy.util import generate_pr_nonce
from ....ledger.error import LedgerError
from ....messaging.decorators.attach_decorator import AttachDecorator
from ....messaging.models.base import BaseModelError
Expand All @@ -33,7 +34,8 @@
WHOLE_NUM,
)
from ....storage.error import StorageError, StorageNotFoundError
from ....indy.util import generate_pr_nonce
from ....utils.tracing import trace_event, get_timer, AdminAPIMessageTracingSchema
from ....wallet.error import WalletNotFoundError

from ...problem_report.v1_0 import internal_error

Expand All @@ -51,9 +53,6 @@
)


from ....utils.tracing import trace_event, get_timer, AdminAPIMessageTracingSchema


class V10PresentationExchangeListQueryStringSchema(OpenAPISchema):
"""Parameters and validators for presentation exchange list query."""

Expand Down Expand Up @@ -931,7 +930,13 @@ async def presentation_exchange_send_presentation(request: web.BaseRequest):
comment=body.get("comment"),
)
result = pres_ex_record.serialize()
except (BaseModelError, HolderError, LedgerError, StorageError) as err:
except (
BaseModelError,
HolderError,
LedgerError,
StorageError,
WalletNotFoundError,
) as err:
await internal_error(
err,
web.HTTPBadRequest,
Expand Down