Sha256: a9877c43eec156f8bdb94616b45d2ae321cfc9cb97fd7a4cf768909a51f37f39

Contents?: true

Size: 530 Bytes

Versions: 1

Compression:

Stored size: 530 Bytes

Contents

package toxtree.plugins.ames.categories;

public class CategoryError extends AmesMutagenicityCategory {
    /**
     * 
     */
    private static final long serialVersionUID = 6672360935236553890L;

    public CategoryError() {
	this("Error when applying the decision tree");
    }

    public CategoryError(String explanation) {

	super(explanation, 10, 10);
	setExplanation(explanation);
    }

    @Override
    public CategoryType getCategoryType() {
	return CategoryType.InconclusiveCategory;
    }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
toxtree-0.0.1 Toxtree-v2.6.13/src/toxtree/plugins/ames/categories/CategoryError.java