blob: 5289ae0f4ebb02c21d3567d7e86d1c3a9a26bf82 [file] [log] [blame]
package org.eclipse.basyx.vab.exception.provider;
/**
* Used to indicate by a ModelProvider,
* that a resource to be created already exists
*
* @author conradi
*
*/
public class ResourceAlreadyExistsException extends ProviderException {
/**
* Version information for serialized instances
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
*/
public ResourceAlreadyExistsException(String msg) {
super(msg);
}
public ResourceAlreadyExistsException(Exception e) {
super(e);
}
}