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

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

The newest version!
/*     */ package javax.xml.crypto;
/*     */ 
/*     */ import java.io.PrintStream;
/*     */ import java.io.PrintWriter;
/*     */ 
/*     */ public class MarshalException extends Exception
/*     */ {
/*     */   private static final long serialVersionUID = -863185580332643547L;
/*     */   private Throwable cause;
/*     */ 
/*     */   public MarshalException()
/*     */   {
/*     */   }
/*     */ 
/*     */   public MarshalException(String message)
/*     */   {
/*  57 */     super(message);
/*     */   }
/*     */ 
/*     */   public MarshalException(String message, Throwable cause)
/*     */   {
/*  72 */     super(message);
/*  73 */     this.cause = cause;
/*     */   }
/*     */ 
/*     */   public MarshalException(Throwable cause)
/*     */   {
/*  86 */     super(cause == null ? null : cause.toString());
/*  87 */     this.cause = cause;
/*     */   }
/*     */ 
/*     */   public Throwable getCause()
/*     */   {
/* 100 */     return this.cause;
/*     */   }
/*     */ 
/*     */   public void printStackTrace()
/*     */   {
/* 108 */     super.printStackTrace();
/*     */   }
/*     */ 
/*     */   public void printStackTrace(PrintStream s)
/*     */   {
/* 119 */     super.printStackTrace(s);
/*     */   }
/*     */ 
/*     */   public void printStackTrace(PrintWriter s)
/*     */   {
/* 130 */     super.printStackTrace(s);
/*     */   }
/*     */ }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy