All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.crypto.URIReferenceException Maven / Gradle / Ivy

The newest version!
/*     */ package javax.xml.crypto;
/*     */ 
/*     */ import java.io.PrintStream;
/*     */ import java.io.PrintWriter;
/*     */ 
/*     */ public class URIReferenceException extends Exception
/*     */ {
/*     */   private static final long serialVersionUID = 7173469703932561419L;
/*     */   private Throwable cause;
/*     */   private URIReference uriReference;
/*     */ 
/*     */   public URIReferenceException()
/*     */   {
/*     */   }
/*     */ 
/*     */   public URIReferenceException(String message)
/*     */   {
/*  55 */     super(message);
/*     */   }
/*     */ 
/*     */   public URIReferenceException(String message, Throwable cause)
/*     */   {
/*  70 */     super(message);
/*  71 */     this.cause = cause;
/*     */   }
/*     */ 
/*     */   public URIReferenceException(String message, Throwable cause, URIReference uriReference)
/*     */   {
/*  91 */     this(message, cause);
/*  92 */     if (uriReference == null) {
/*  93 */       throw new NullPointerException("uriReference cannot be null");
/*     */     }
/*  95 */     this.uriReference = uriReference;
/*     */   }
/*     */ 
/*     */   public URIReferenceException(Throwable cause)
/*     */   {
/* 108 */     super(cause == null ? null : cause.toString());
/* 109 */     this.cause = cause;
/*     */   }
/*     */ 
/*     */   public URIReference getURIReference()
/*     */   {
/* 120 */     return this.uriReference;
/*     */   }
/*     */ 
/*     */   public Throwable getCause()
/*     */   {
/* 133 */     return this.cause;
/*     */   }
/*     */ 
/*     */   public void printStackTrace()
/*     */   {
/* 141 */     super.printStackTrace();
/*     */   }
/*     */ 
/*     */   public void printStackTrace(PrintStream s)
/*     */   {
/* 152 */     super.printStackTrace(s);
/*     */   }
/*     */ 
/*     */   public void printStackTrace(PrintWriter s)
/*     */   {
/* 163 */     super.printStackTrace(s);
/*     */   }
/*     */ }

/* Location:           E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
 * Qualified Name:     javax.xml.crypto.URIReferenceException
 * JD-Core Version:    0.6.2
 */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy