类 ChartException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.microbean.helm.HelmException
-
- org.microbean.helm.chart.ChartException
-
- 所有已实现的接口:
Serializable
- 直接已知子类:
MissingDependenciesException
public class ChartException extends HelmException
AHelmExceptionindicating that there is a problem with a Helm chart.- 作者:
- Laird Nelson
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 ChartException()Creates a newChartException.ChartException(String message)Creates a newChartException.ChartException(String message, Throwable cause)Creates a newChartException.ChartException(Throwable cause)Creates a newChartException.
-
方法概要
-
-
-
构造器详细资料
-
ChartException
public ChartException()
Creates a newChartException.
-
ChartException
public ChartException(String message)
Creates a newChartException.- 参数:
message- a descriptive message; may benull
-
ChartException
public ChartException(Throwable cause)
Creates a newChartException.- 参数:
cause- theThrowableresponsible for thisChartException; may benull
-
ChartException
public ChartException(String message, Throwable cause)
Creates a newChartException.- 参数:
message- a descriptive message; may benullcause- theThrowableresponsible for thisChartException; may benull
-
-