Skip to content

Map weird Hibernate exceptions to nice MIsk exceptions #1073

Open
@swankjesse

Description

@swankjesse

So application code doesn’t need to do this:

    try {
      doTheThing()
    } catch (e: ConstraintViolationException) {
      throw ConflictException()
    } catch (e: RetryTransactionException) {
      when (Throwables.getRootCause(e)) {
        is ConstraintViolationException -> throw ConflictException()
        else -> throw e
      }
    } catch (e: javax.persistence.OptimisticLockException) {
      throw ConflictException()
    } catch (e: org.hibernate.OptimisticLockException) {
      throw ConflictException()
    }

Metadata

Metadata

Assignees

Labels

hibernateHibernate & application-layer database access

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions