类 HelmException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.microbean.helm.HelmException
-
- 所有已实现的接口:
Serializable
- 直接已知子类:
ChartException,TillerException
public abstract class HelmException extends RuntimeException
An abstractRuntimeExceptionindicating a general Helm- or Tiller-related problem.- 作者:
- Laird Nelson
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 限定符 构造器 说明 protectedHelmException()Creates a newHelmException.protectedHelmException(String message)Creates a newHelmException.protectedHelmException(String message, Throwable cause)Creates a newHelmException.protectedHelmException(Throwable cause)Creates a newHelmException.
-
方法概要
-
-
-
构造器详细资料
-
HelmException
protected HelmException()
Creates a newHelmException.
-
HelmException
protected HelmException(String message)
Creates a newHelmException.- 参数:
message- a descriptive message; may benull
-
HelmException
protected HelmException(Throwable cause)
Creates a newHelmException.- 参数:
cause- theThrowableresponsible for thisHelmException; may benull
-
HelmException
protected HelmException(String message, Throwable cause)
Creates a newHelmException.- 参数:
message- a descriptive message; may benullcause- theThrowableresponsible for thisHelmException; may benull
-
-