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

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

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

origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL
 * Add an internal Exception to the collection of
 * internal Exceptions
 */
public Object addInternalException(Object theException) {
  getInternalExceptions().add(theException);
  return theException;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL
 * Add an internal Exception to the collection of
 * internal Exceptions
 */
public Object addInternalException(Object theException) {
  getInternalExceptions().add(theException);
  return theException;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL
 * Does this exception have any internal errors?
 */
public boolean hasInternalExceptions() {
  return !getInternalExceptions().isEmpty();
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL
 * Add an internal Exception to the collection of
 * internal Exceptions
 */
public Object addInternalException(Object theException) {
  getInternalExceptions().add(theException);
  return theException;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL
 * Does this exception have any internal errors?
 */
public boolean hasInternalExceptions() {
  return !getInternalExceptions().isEmpty();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL
 * Does this exception have any internal errors?
 */
public boolean hasInternalExceptions() {
  return !getInternalExceptions().isEmpty();
}
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.exceptionsJPQLExceptiongetInternalExceptions

Javadoc

INTERNAL Return the collection of internal Exceptions. Intialize if there are no exceptions

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
  • hasInternalExceptions
    INTERNAL Does this exception have any internal errors?
  • indexOnlyAllowedOnVariable
  • invalidCollectionMemberDecl
  • invalidCollectionNavigation
  • invalidEnumEqualExpression
  • invalidCollectionNavigation,
  • invalidEnumEqualExpression,
  • invalidEnumLiteral,
  • invalidExpressionArgument,
  • invalidFunctionArgument,
  • invalidMultipleUseOfSameParameter,
  • invalidNavigation,
  • invalidSetClauseNavigation,
  • invalidSetClauseTarget

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • onRequestPermissionsResult (Fragment)
  • setRequestProperty (URLConnection)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JButton (javax.swing)
  • CodeWhisperer alternatives
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