![JAR search and dependency download from the Maven repository](/logo.png)
com.ibm.icu.message2.MFParseException Maven / Gradle / Ivy
// © 2024 and later: Unicode, Inc. and others.
// License & terms of use: https://www.unicode.org/copyright.html
package com.ibm.icu.message2;
import java.text.ParseException;
/**
* Used to report parsing errors in {@link MessageFormatter}.
*
* @internal ICU 75 technology preview
* @deprecated This API is for technology preview only.
*/
@Deprecated
public class MFParseException extends ParseException {
private static final long serialVersionUID = -7634219305388292407L;
/**
* Constructs a MFParseException with the specified message and offset.
*
* @param message the message
* @param errorOffset the position where the error is found while parsing.
*/
public MFParseException(String message, int errorOffset) {
super(message, errorOffset);
}
@Override
public String getMessage() {
return super.getMessage();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy