Tabnine Logo
JPQLException.resolutionClassNotFoundException
Code IndexAdd Tabnine to your IDE (free)

How to use
resolutionClassNotFoundException
method
in
org.eclipse.persistence.exceptions.JPQLException

Best Java code snippets using org.eclipse.persistence.exceptions.JPQLException.resolutionClassNotFoundException (Showing top 3 results out of 315)

origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/** 
 * INTERNAL
 * Answer the class associated with the provided schema name
 */
public Class classForSchemaName(String schemaName, GenerationContext context) {
  ClassDescriptor descriptor = context.getSession().getDescriptorForAlias(schemaName);
  if (descriptor == null) {
    throw JPQLException.entityTypeNotFound(getQueryInfo(), schemaName);
  }
  Class theClass = descriptor.getJavaClass();
  if (theClass == null) {
    throw JPQLException.resolutionClassNotFoundException(getQueryInfo(), schemaName);
  }
  return theClass;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL
 * Answer the class associated with the provided schema name
 */
public Class classForSchemaName(String schemaName, GenerationContext context) {
  ClassDescriptor descriptor = context.getSession().getDescriptorForAlias(schemaName);
  if (descriptor == null) {
    throw JPQLException.entityTypeNotFound(getQueryInfo(), schemaName);
  }
  Class theClass = descriptor.getJavaClass();
  if (theClass == null) {
    throw JPQLException.resolutionClassNotFoundException(getQueryInfo(), schemaName);
  }
  return theClass;
}
origin: com.haulmont.thirdparty/eclipselink

/** 
 * INTERNAL
 * Answer the class associated with the provided schema name
 */
public Class classForSchemaName(String schemaName, GenerationContext context) {
  ClassDescriptor descriptor = context.getSession().getDescriptorForAlias(schemaName);
  if (descriptor == null) {
    throw JPQLException.entityTypeNotFound(getQueryInfo(), schemaName);
  }
  Class theClass = descriptor.getJavaClass();
  if (theClass == null) {
    throw JPQLException.resolutionClassNotFoundException(getQueryInfo(), schemaName);
  }
  return theClass;
}
org.eclipse.persistence.exceptionsJPQLExceptionresolutionClassNotFoundException

Popular methods of JPQLException

  • <init>
    INTERNAL Only TopLink can throw and create these excpetions
  • aliasResolutionException
  • constructorClassNotFound
  • entityTypeNotFound
    JPQLException Entity Type Not Found Indicates that a type specified in a JPQL query string cannot b
  • entityTypeNotFound2
  • expectedOrderableOrderByItem
  • generalParsingException
    INTERNAL Create an exception to wrap a general parsing exception
  • getInternalExceptions
    INTERNAL Return the collection of internal Exceptions. Intialize if there are no exceptions
  • hasInternalExceptions
    INTERNAL Does this exception have any internal errors?
  • indexOnlyAllowedOnVariable
  • invalidCollectionMemberDecl
  • invalidCollectionNavigation
  • invalidCollectionMemberDecl,
  • invalidCollectionNavigation,
  • invalidEnumEqualExpression,
  • invalidEnumLiteral,
  • invalidExpressionArgument,
  • invalidFunctionArgument,
  • invalidMultipleUseOfSameParameter,
  • invalidNavigation,
  • invalidSetClauseNavigation,
  • invalidSetClauseTarget

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • runOnUiThread (Activity)
  • requestLocationUpdates (LocationManager)
  • Path (java.nio.file)
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JList (javax.swing)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now