1 package org.lsst.ccs.utilities.beanutils;
2
3
4 /**
5 * Wraps an Exception thrown during bean operations in a RuntimeException
6 * @author bamade
7 */
8 public class WrappedException extends RuntimeException{
9 public WrappedException(String s, Throwable throwable) {
10 super(s, throwable);
11 }
12
13 public WrappedException(Throwable throwable) {
14 super(throwable);
15 }
16 }