Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
FXRuntimeException |
|
| 1.0;1 |
1 | package com.sun.javafx.runtime; | |
2 | ||
3 | /** | |
4 | * FXRuntimeException | |
5 | * | |
6 | * @author Brian Goetz | |
7 | */ | |
8 | public class FXRuntimeException extends RuntimeException { | |
9 | 0 | public FXRuntimeException() { |
10 | 0 | } |
11 | ||
12 | public FXRuntimeException(String message) { | |
13 | 175 | super(message); |
14 | 175 | } |
15 | ||
16 | public FXRuntimeException(String message, Throwable cause) { | |
17 | 0 | super(message, cause); |
18 | 0 | } |
19 | ||
20 | public FXRuntimeException(Throwable cause) { | |
21 | 0 | super(cause); |
22 | 0 | } |
23 | } |