FileDocCategorySizeDatePackage
UnmodifiableSetException.javaAPI DocJava SE 5 API811Fri Aug 26 14:57:44 BST 2005javax.print.attribute

UnmodifiableSetException

public class UnmodifiableSetException extends RuntimeException
Thrown to indicate that the requested operation cannot be performed becasue the set is unmodifiable.
author
Phil Race
since
1.4

Fields Summary
Constructors Summary
public UnmodifiableSetException()
Constructs an UnsupportedOperationException with no detail message.

    
public UnmodifiableSetException(String message)
Constructs an UnmodifiableSetException with the specified detail message.

param
message the detail message

	super(message);
    
Methods Summary