Exemplo n.º 1
0
  /**
   * @param aParameter
   * @param function
   */
  public NotAlphaNumericException(SqlExpression aParameter, SqlExpression function) {

    super(
        ErrorMessageRepository.EXPRESSION_NOT_ALPHANUMERIC
            + " ( "
            + aParameter.rebuildString()
            + ", "
            + function.rebuildString()
            + " )",
        0,
        ErrorMessageRepository.EXPRESSION_NOT_ALPHANUMERIC_CODE);
  }
Exemplo n.º 2
0
 /** @param aSqlExpression */
 public NotAlphaNumericException(SqlExpression aSqlExpression) {
   super(
       ErrorMessageRepository.EXPRESSION_NOT_ALPHANUMERIC + aSqlExpression.rebuildString(),
       0,
       ErrorMessageRepository.EXPRESSION_NOT_ALPHANUMERIC_CODE);
 }