001package org.javasimon.utils.bean; 002 003/** 004 * Exception thrown by SimonBeanUtils class. 005 * 006 * @author <a href="mailto:ivan.mushketyk@gmail.com">Ivan Mushketyk</a> 007 */ 008public class BeanUtilsException extends RuntimeException { 009 010 public BeanUtilsException(String msg) { 011 super(msg); 012 } 013 014 public BeanUtilsException(Throwable cause) { 015 super(cause); 016 } 017 018 public BeanUtilsException(String msg, Throwable cause) { 019 super(msg, cause); 020 } 021}