0N/A/*
2362N/A * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage java.lang;
0N/A
0N/A/**
0N/A * An IllegalAccessException is thrown when an application tries
0N/A * to reflectively create an instance (other than an array),
0N/A * set or get a field, or invoke a method, but the currently
0N/A * executing method does not have access to the definition of
0N/A * the specified class, field, method or constructor.
0N/A *
0N/A * @author unascribed
0N/A * @see Class#newInstance()
0N/A * @see java.lang.reflect.Field#set(Object, Object)
0N/A * @see java.lang.reflect.Field#setBoolean(Object, boolean)
0N/A * @see java.lang.reflect.Field#setByte(Object, byte)
0N/A * @see java.lang.reflect.Field#setShort(Object, short)
0N/A * @see java.lang.reflect.Field#setChar(Object, char)
0N/A * @see java.lang.reflect.Field#setInt(Object, int)
0N/A * @see java.lang.reflect.Field#setLong(Object, long)
0N/A * @see java.lang.reflect.Field#setFloat(Object, float)
0N/A * @see java.lang.reflect.Field#setDouble(Object, double)
0N/A * @see java.lang.reflect.Field#get(Object)
0N/A * @see java.lang.reflect.Field#getBoolean(Object)
0N/A * @see java.lang.reflect.Field#getByte(Object)
0N/A * @see java.lang.reflect.Field#getShort(Object)
0N/A * @see java.lang.reflect.Field#getChar(Object)
0N/A * @see java.lang.reflect.Field#getInt(Object)
0N/A * @see java.lang.reflect.Field#getLong(Object)
0N/A * @see java.lang.reflect.Field#getFloat(Object)
0N/A * @see java.lang.reflect.Field#getDouble(Object)
0N/A * @see java.lang.reflect.Method#invoke(Object, Object[])
0N/A * @see java.lang.reflect.Constructor#newInstance(Object[])
0N/A * @since JDK1.0
0N/A */
1418N/Apublic class IllegalAccessException extends ReflectiveOperationException {
644N/A private static final long serialVersionUID = 6616958222490762034L;
644N/A
0N/A /**
0N/A * Constructs an <code>IllegalAccessException</code> without a
0N/A * detail message.
0N/A */
0N/A public IllegalAccessException() {
0N/A super();
0N/A }
0N/A
0N/A /**
0N/A * Constructs an <code>IllegalAccessException</code> with a detail message.
0N/A *
0N/A * @param s the detail message.
0N/A */
0N/A public IllegalAccessException(String s) {
0N/A super(s);
0N/A }
0N/A}