|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ThrowableWrapper.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /* | |
| 2 | * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of | |
| 3 | * the MIT License. | |
| 4 | */ | |
| 5 | package org.easymock.internal; | |
| 6 | ||
| 7 | public class ThrowableWrapper extends Throwable { | |
| 8 | private final Throwable throwable; | |
| 9 | ||
| 10 | 67 | public ThrowableWrapper(final Throwable throwable) { |
| 11 | 67 | this.throwable = throwable; |
| 12 | } | |
| 13 | ||
| 14 | 67 | public Throwable getThrowable() { |
| 15 | 67 | return throwable; |
| 16 | } | |
| 17 | } |
|
||||||||||