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