| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| TrailsSecurityException |
|
| 1.0;1 |
| 1 | package org.trails.security; |
|
| 2 | ||
| 3 | import ognl.OgnlException; |
|
| 4 | ||
| 5 | import org.trails.TrailsRuntimeException; |
|
| 6 | ||
| 7 | public class TrailsSecurityException extends TrailsRuntimeException { |
|
| 8 | public TrailsSecurityException(String string) { |
|
| 9 | 2 | super(string); |
| 10 | 2 | } |
| 11 | ||
| 12 | public TrailsSecurityException(String string, OgnlException e) { |
|
| 13 | 1 | super(string, e); |
| 14 | 1 | } |
| 15 | } |