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

com.emv.qrcode.core.exception.DecodeValueException Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.emv.qrcode.core.exception;

import java.text.MessageFormat;

public class DecodeValueException extends PresentedModeException {

  private static final long serialVersionUID = 3381404607920642729L;

  private final String value;

  public DecodeValueException(final String value) {
    super(MessageFormat.format("Characters outside of the expected range Hex ''[0-9a-fA-F]''. Invalid value ''{0}''", value));
    this.value = value;
  }

  public String getValue() {
    return value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy