Constructors Summary |
---|
public GenericClusteringException()
this.completed = this.COMPLETED_MAYBE;
|
public GenericClusteringException(int CompletionStatus)
this.completed = CompletionStatus;
|
public GenericClusteringException(int CompletionStatus, String s)
super(s);
this.completed = CompletionStatus;
|
public GenericClusteringException(int CompletionStatus, String s, boolean isDefinitive)
super(s);
this.completed = CompletionStatus;
this.isDefinitive = isDefinitive;
|
public GenericClusteringException(int CompletionStatus, Throwable nested, boolean isDefinitive)
super(nested);
this.completed = CompletionStatus;
this.isDefinitive = isDefinitive;
|
public GenericClusteringException(int CompletionStatus, Throwable nested)
super(nested);
this.completed = CompletionStatus;
|