All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hotrod.runtime.exceptions.InvalidJavaExpressionException Maven / Gradle / Ivy

package org.hotrod.runtime.exceptions;

import org.hotrod.runtime.dynamicsql.SourceLocation;

public class InvalidJavaExpressionException extends Exception {

  private static final long serialVersionUID = 1L;

  private SourceLocation sourceLocation;

  public InvalidJavaExpressionException(final SourceLocation sourceLocation, final String message) {
    super(message);
    this.sourceLocation = sourceLocation;
  }

  public SourceLocation getSourceLocation() {
    return sourceLocation;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy