AttributeNotFoundException.java revision 0
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync/*
f8ea19ec30af38c96a5ce9ae4ae1b1a9b3e33bbbvboxsync * Copyright 1999-2003 Sun Microsystems, Inc. All Rights Reserved.
1c2c968fd241148110002d75b2c0fdeddc211e14vboxsync * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync *
1c2c968fd241148110002d75b2c0fdeddc211e14vboxsync * This code is free software; you can redistribute it and/or modify it
1c2c968fd241148110002d75b2c0fdeddc211e14vboxsync * under the terms of the GNU General Public License version 2 only, as
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * published by the Free Software Foundation. Sun designates this
f8ea19ec30af38c96a5ce9ae4ae1b1a9b3e33bbbvboxsync * particular file as subject to the "Classpath" exception as provided
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * by Sun in the LICENSE file that accompanied this code.
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync *
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * This code is distributed in the hope that it will be useful, but WITHOUT
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * version 2 for more details (a copy is included in the LICENSE file that
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * accompanied this code).
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync *
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * You should have received a copy of the GNU General Public License version
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * 2 along with this work; if not, write to the Free Software Foundation,
6942d3cf341121c720dc33db7f0a6a9b1e59cc8dvboxsync * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync *
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
539641a5533f047e292c38a748f2936a99cc8b3avboxsync * CA 95054 USA or visit www.sun.com if you need additional information or
500cb33d11c27b288bfd467f00f52a0482c274d0vboxsync * have any questions.
dbece887397ff8facd85275778695413440abd40vboxsync */
c954653e70de765f09c6381a091c5465a867636cvboxsync
c954653e70de765f09c6381a091c5465a867636cvboxsyncpackage javax.management;
a5dc49f41d7d9497f8c5d7daade92867636a090bvboxsync
359e60a8d6eed8ce120b58dfd323865990d6e87bvboxsync
359e60a8d6eed8ce120b58dfd323865990d6e87bvboxsync/**
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * The specified attribute does not exist or cannot be retrieved.
dbece887397ff8facd85275778695413440abd40vboxsync *
f9fc8c7343143818644af6caf51a2b2520b8b7a9vboxsync * @since 1.5
*/
public class AttributeNotFoundException extends OperationsException {
/* Serial version */
private static final long serialVersionUID = 6511584241791106926L;
/**
* Default constructor.
*/
public AttributeNotFoundException() {
super();
}
/**
* Constructor that allows a specific error message to be specified.
*
* @param message detail message.
*/
public AttributeNotFoundException(String message) {
super(message);
}
}