Package de.sub.goobi.helper.exceptions

Examples of de.sub.goobi.helper.exceptions.UghHelperException


   * @throws UghHelperException
   */
  public MetadataType getMetadataType(Prefs inPrefs, String inName) throws UghHelperException {
    MetadataType mdt = inPrefs.getMetadataTypeByName(inName);
    if (mdt == null) {
      throw new UghHelperException("MetadataType does not exist in current Preferences: " + inName);
    }
    return mdt;
  }
View Full Code Here

TOP

Related Classes of de.sub.goobi.helper.exceptions.UghHelperException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.