congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
JPQLException.hasInternalExceptions
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.eclipse.persistence/org.eclipse.persistence.core

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  /**
   * PUBLIC
   * Print the stack trace for each error generated by the
   * parser. This method is intended to assist in debugging
   * problems in EJBQL
   */
  public void printFullStackTrace() {
    if (hasInternalExceptions()) {
      Iterator exceptions = getInternalExceptions().iterator();
      while (exceptions.hasNext()) {
        Throwable error = (Throwable)exceptions.next();
        error.printStackTrace();
      }
    }
  }
}
org.eclipse.persistence.exceptionsJPQLExceptionhasInternalExceptions

Javadoc

INTERNAL Does this exception have any internal errors?

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
  • indexOnlyAllowedOnVariable
  • invalidCollectionMemberDecl
  • invalidCollectionNavigation
  • invalidEnumEqualExpression
  • invalidCollectionNavigation,
  • invalidEnumEqualExpression,
  • invalidEnumLiteral,
  • invalidExpressionArgument,
  • invalidFunctionArgument,
  • invalidMultipleUseOfSameParameter,
  • invalidNavigation,
  • invalidSetClauseNavigation,
  • invalidSetClauseTarget

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • JOptionPane (javax.swing)
  • JTextField (javax.swing)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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