![JAR search and dependency download from the Maven repository](/logo.png)
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