blob: 30edf58113304851e8df7bd8d99467c4d53c01b1 [file] [log] [blame]
package org.eclipse.basyx.components.directory.exception;
/**
* Indicate a problem with the AAS directory provider
*
* @author kuhn
*
*/
public class AASDirectoryProviderException extends RuntimeException {
/**
* Version number support for serialized instances
*/
private static final long serialVersionUID = 1L;
/**
* Error message
*/
protected String errorMessage = null;
/**
* Constructor
*/
public AASDirectoryProviderException(String errorMsg) {
errorMessage = errorMsg;
}
}