- /*
- * @(#)UnsupportedOperationException.java 1.15 03/01/23
- *
- * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
-
- package java.lang;
-
- /**
- * Thrown to indicate that the requested operation is not supported.<p>
- *
- * This class is a member of the
- * <a href="{@docRoot}/../guide/collections/index.html">
- * Java Collections Framework</a>.
- *
- * @author Josh Bloch
- * @version 1.15, 01/23/03
- * @since 1.2
- */
- public class UnsupportedOperationException extends RuntimeException {
- /**
- * Constructs an UnsupportedOperationException with no detail message.
- */
- public UnsupportedOperationException() {
- }
-
- /**
- * Constructs an UnsupportedOperationException with the specified
- * detail message.
- *
- * @param message the detail message
- */
- public UnsupportedOperationException(String message) {
- super(message);
- }
- }