1 package com.google.code.beanmatchers; 2 3 public class BeanMatchersException extends RuntimeException { 4 5 public BeanMatchersException(String message) { 6 super(message); 7 } 8 9 public BeanMatchersException(String message, Throwable cause) { 10 super(message, cause); 11 } 12 13 public BeanMatchersException(Throwable cause) { 14 super(cause); 15 } 16 }