
org.picocontainer.gems.util.IllegalAccessRuntimeException Maven / Gradle / Ivy
/*****************************************************************************
* Copyright (C) PicoContainer Organization. All rights reserved. *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file. *
* *
* Original code by Centerline Computers, Inc. *
*****************************************************************************/
package org.picocontainer.gems.util;
import org.picocontainer.PicoException;
/**
* Runtime Exception version of {@link java.lang.IllegalAccessException}.
*
* @author Michael Rimov
*
*/
@SuppressWarnings("serial")
public class IllegalAccessRuntimeException extends PicoException {
/**
*
*/
public IllegalAccessRuntimeException() {
super();
}
/**
* @param message
*/
public IllegalAccessRuntimeException(final String message) {
super(message);
}
/**
* @param cause
*/
public IllegalAccessRuntimeException(final Throwable cause) {
super(cause);
}
/**
* @param message
* @param cause
*/
public IllegalAccessRuntimeException(final String message,
final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy