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

com.nikhaldimann.viewselector.attributes.AttributeAccessException Maven / Gradle / Ivy

package com.nikhaldimann.viewselector.attributes;

/**
 * Exception thrown when accessing a view attribute by name fails.
 */
public class AttributeAccessException extends RuntimeException {

    public AttributeAccessException(Exception cause) {
        super(cause);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy