| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TalosHibernateException |
|
| 0.0;0 |
| 1 | package org.talos.exception; | |
| 2 | ||
| 3 | /** | |
| 4 | * This exception wraps any HibernateException that was raised inside Talos. | |
| 5 | */ | |
| 6 | @SuppressWarnings("serial") | |
| 7 | public class TalosHibernateException extends RuntimeException { | |
| 8 | ||
| 9 | public TalosHibernateException(final String message, final Throwable cause) { | |
| 10 | 35 | super(message, cause); |
| 11 | 35 | } |
| 12 | ||
| 13 | } |