FileDocCategorySizeDatePackage
UnsupportedPolicyAssertion.javaAPI DocExample2869Tue May 29 16:56:48 BST 2007com.sun.xml.ws.security.impl.policy

UnsupportedPolicyAssertion

public class UnsupportedPolicyAssertion extends RuntimeException
RuntimeException which is thrown by security policy assertion implementation when a Invalid PolicyAssertion is found. Note for {@link com.sun.xml.ws.api.pipe.Pipe} implementors using SecurityPolicy Assertions should catch this exception and throw exceptions required by the Pipe.
author
K.Venugopal@sun.com

Fields Summary
Constructors Summary
public UnsupportedPolicyAssertion()
Creates a new instance of UnsupportedPolicyAssertion

    
public UnsupportedPolicyAssertion(String msg)

        super(msg);
    
public UnsupportedPolicyAssertion(String msg, Throwable exp)

        super(msg,exp);
    
public UnsupportedPolicyAssertion(Throwable exp)

        super(exp);
    
Methods Summary