package org.opengroupware.jope.ognl;

import ognl.OgnlException;

import org.opengroupware.jope.foundation.NSException;

public class NSOgnlException extends NSException {
  private static final long serialVersionUID = 1L;
  
  protected String        ognl;
  protected OgnlException exception;

  public NSOgnlException(String _reason, String _ognl, OgnlException _e) {
    super(_reason + _e.getMessage());
    this.ognl      = _ognl;
    this.exception = _e;
  }

}
