001 /* 002 * Vestigo - The JDO/JPA Query Tool And Browser - http://vestigo.nightlabs.com 003 * Copyright © 2011-2012 NightLabs Consulting GmbH. All rights reserved. 004 * 005 * This program and all its libraries in the namespace "*.nightlabs.vestigo.*" 006 * are proprietary software. Their source codes are trade secrets and therefore 007 * must be kept confidential. 008 * 009 * The use of this software is subject to licence terms. 010 * 011 * Please see LICENCE.txt or 012 * http://vestigo.nightlabs.com/latest-stable/about/licence.html for 013 * more details. 014 * 015 * For further information, please contact NightLabs Consulting GmbH: 016 * http://nightlabs.com 017 */ 018 package org.cumulus4j.store.reflectionwrapper; 019 020 public class ReflectionWrapperException extends RuntimeException 021 { 022 private static final long serialVersionUID = 1L; 023 024 public ReflectionWrapperException() { } 025 026 public ReflectionWrapperException(String message) { 027 super(message); 028 } 029 030 public ReflectionWrapperException(Throwable cause) { 031 super(cause); 032 } 033 034 public ReflectionWrapperException(String message, Throwable cause) { 035 super(message, cause); 036 } 037 }