org.hibernate.boot.UnsupportedOrmXsdVersionException Maven / Gradle / Ivy
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.boot;
import org.hibernate.boot.jaxb.Origin;
/**
* @author Steve Ebersole
*/
public class UnsupportedOrmXsdVersionException extends MappingException {
private final String requestedVersion;
public UnsupportedOrmXsdVersionException(String requestedVersion, Origin origin) {
super( "Encountered unsupported orm.xml xsd version [" + requestedVersion + "]", origin );
this.requestedVersion = requestedVersion;
}
@SuppressWarnings("UnusedDeclaration")
public String getRequestedVersion() {
return requestedVersion;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy