Alachisoft.NCache.Common.yield.CollectionAbortedException Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Alachisoft.NCache.Common.yield;
/**
* An exception class that can be thrown by collectors or results handlers in order to abort or
* signal abortion of the collecting process, for any reason.
*/
public class CollectionAbortedException extends Exception {
public CollectionAbortedException() {
}
public CollectionAbortedException(String message) {
super(message);
}
public CollectionAbortedException(String message, Throwable cause) {
super(message, cause);
}
public CollectionAbortedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy