All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nikhaldimann.viewselector.InvalidSelectorException Maven / Gradle / Ivy

package com.nikhaldimann.viewselector;

/**
 * Thrown when a selector string can't be parsed.
 */
public class InvalidSelectorException extends RuntimeException {

    public InvalidSelectorException(String message) {
        super(message);
    }

    public InvalidSelectorException(String message, Exception cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy