public IllegalArgumentException(String message, Throwable cause) : base(message, cause) { }
public ClassNotFoundException(String message, Throwable cause) : base(message, cause) { }
public LayerInstantiationException(String message, Throwable cause) : base(message, cause) { }
public IllegalCallerException(Throwable cause) : base(cause) { }
public BootStrapMethodError(Throwable cause) : base(String.Empty, cause) { }
/** * Constructs a new {@code Error} with the current stack trace and the * specified cause. * * @param throwable * the cause of this error. */ public Error(Throwable throwable) : base(throwable) { }
/** * Constructs a new {@code UnsupportedOperationException} with the current * stack trace, the specified detail message and the specified cause. * * @param message * the detail message for this exception. * @param cause * the optional cause of this exception, may be {@code null}. * @since 1.5 */ public UnsupportedOperationException(String message, Throwable cause) : base(message, cause) { }
/** * Constructs a new {@code TypeNotPresentException} with the current stack * trace, a detail message that includes the name of the type that could not * be found and the {@code Throwable} that caused this exception. * * @param typeName * the fully qualified name of the type that could not be found. * @param cause * the optional cause of this exception, may be {@code null}. */ public TypeNotPresentException(String typeName, Throwable cause) : base("Type " + typeName + " not present", cause) { this.typeNameJ = typeName; }
/* * Constructs a new {@code Error} with the current stack trace, the * specified detail message and the specified cause. * * @param detailMessage * the detail message for this error. * @param throwable * the cause of this error. */ public Error(String detailMessage, Throwable throwable) : base(detailMessage, throwable) { }
public Exception(Throwable cause) : base(cause) { }
public IllegalArgumentException(Throwable cause) : base(cause) { }
public ClassNotFoundException(Throwable cause) : base(cause) { }
public ReflectiveOperationException(Throwable cause) : base(cause) { }
/* * Constructs a new {@code Error} with the current stack trace and the * specified cause. * * @param throwable * the cause of this error. */ public Error(Throwable throwable) : base(throwable) { }
public RuntimeException(Throwable cause) : base(cause) { }
/* * Constructs a new {@code UnsupportedOperationException} with the current * stack trace, the specified detail message and the specified cause. * * @param message * the detail message for this exception. * @param cause * the optional cause of this exception, may be {@code null}. * @since 1.5 */ public UnsupportedOperationException(String message, Throwable cause) : base(message, cause) { }
/** * Constructs a new {@code IllegalStateException} with the current stack * trace and the specified cause. * * @param cause * the cause of this exception, may be {@code null}. * @since 1.5 */ public IllegalStateException(Throwable cause) : base((cause == null ? null : cause.toString()), cause) { }
/* * Constructs a new {@code UnsupportedOperationException} with the current * stack trace and the specified cause. * * @param cause * the optional cause of this exception, may be {@code null}. * @since 1.5 */ public UnsupportedOperationException(Throwable cause) : base((cause == null ? null : cause.toString()), cause) { }
public Throwable(String message, Throwable cause) : base(message) { this.cause = cause; }
public virtual Throwable initCause(Throwable throwable) { if (cause == this) { if (throwable != this) { cause = throwable; return this; } throw new IllegalArgumentException("Cause cannot be the receiver"); } throw new IllegalStateException("Cause already initialized"); }
public BootStrapMethodError(String message, Throwable cause) : base(message, cause) { }
public Throwable(Throwable cause) : this(cause == null ? "" : cause.getMessage(), cause) { }
public LayerInstantiationException(Throwable cause) : base(cause) { }
/** * Constructs a new {@code TypeNotPresentException} with the current stack * trace, a detail message that includes the name of the type that could not * be found and the {@code Throwable} that caused this exception. * * @param typeName * the fully qualified name of the type that could not be found. * @param cause * the optional cause of this exception, may be {@code null}. */ public TypeNotPresentException(String typeName, Throwable cause) : base ("Type " + typeName + " not present", cause) { this.typeNameJ = typeName; }
public ReflectiveOperationException(String message, Throwable cause) : base(message, cause) { }
public RuntimeException(String message, Throwable cause) : base(message, cause) { }
/** * Constructs a new {@code Error} with the current stack trace, the * specified detail message and the specified cause. * * @param detailMessage * the detail message for this error. * @param throwable * the cause of this error. */ public Error(String detailMessage, Throwable throwable) : base(detailMessage, throwable) { }
public ReflexitiveOperationException(String message, Throwable cause) : base(message, cause) { }
/** * Constructs a new {@code IllegalStateException} with the current stack * trace, the specified detail message and the specified cause. * * @param message * the detail message for this exception. * @param cause * the cause of this exception. * @since 1.5 */ public IllegalStateException(String message, Throwable cause) : base(message,cause) { }
public ReflexitiveOperationException(Throwable cause) : base(cause) { }
public IllegalCallerException(String message, Throwable cause) : base(message, cause) { }
/** * Constructs a new {@code UnsupportedOperationException} with the current * stack trace and the specified cause. * * @param cause * the optional cause of this exception, may be {@code null}. * @since 1.5 */ public UnsupportedOperationException(Throwable cause) : base((cause == null ? null : cause.toString()), cause) { }