You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
846 B
52 lines
846 B
/*
|
|
* Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.print.attribute;
|
|
|
|
/**
|
|
* Thrown to indicate that the requested operation cannot be performed
|
|
* because the set is unmodifiable.
|
|
*
|
|
* @author Phil Race
|
|
* @since 1.4
|
|
*/
|
|
public class UnmodifiableSetException extends RuntimeException {
|
|
/**
|
|
* Constructs an UnsupportedOperationException with no detail message.
|
|
*/
|
|
public UnmodifiableSetException() {
|
|
}
|
|
|
|
/**
|
|
* Constructs an UnmodifiableSetException with the specified
|
|
* detail message.
|
|
*
|
|
* @param message the detail message
|
|
*/
|
|
public UnmodifiableSetException(String message) {
|
|
super(message);
|
|
}
|
|
}
|