/* * Copyright 2013 serso aka se.solovyev * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Contact details * * Email: se.solovyev@gmail.com * Site: http://se.solovyev.org */ package org.solovyev.android.calculator; import org.solovyev.common.msg.Message; import org.solovyev.common.msg.MessageLevel; import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.util.List; import java.util.Locale; public class ParseException extends RuntimeException implements Message { @Nonnull private final Message message; @Nonnull private final String expression; @Nullable private final Integer position; public ParseException(@Nonnull jscl.text.ParseException jsclParseException) { this.message = jsclParseException; this.expression = jsclParseException.getExpression(); this.position = jsclParseException.getPosition(); } public ParseException(@Nullable Integer position, @Nonnull String expression, @Nonnull Message message) { this.message = message; this.expression = expression; this.position = position; } public ParseException(@Nonnull String expression, @Nonnull Message message) { this(null, expression, message); } @Nonnull public String getExpression() { return expression; } @Nullable public Integer getPosition() { return position; } @Nonnull @Override public String getMessageCode() { return this.message.getMessageCode(); } @Nonnull @Override public List<Object> getParameters() { return this.message.getParameters(); } @Nonnull @Override public MessageLevel getMessageLevel() { return this.message.getMessageLevel(); } @Override @Nonnull public String getLocalizedMessage() { return this.message.getLocalizedMessage(Locale.getDefault()); } @Nonnull @Override public String getLocalizedMessage(@Nonnull Locale locale) { return this.message.getLocalizedMessage(locale); } }