QRCodeEncoderErrorCode.java
527 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.pmp.qrcodepmp;
public enum QRCodeEncoderErrorCode {
UNKNOWN("UNKNOWN"),
MESSAGE_TOO_BIG("MESSAGE_TOO_BIG"),
IMAGE_TOO_SMALL("IMAGE_TOO_SMALL"),
RESOLUTION("RESOLUTION"),
ECC("ECC"),
WIDTH("WIDTH"),
HEIGHT("HEIGHT"),
XSYMWIDTH("XSYMWIDTH");
private String message;
private QRCodeEncoderErrorCode(String message) {
this.message = message;
}
public String toString() {
return this.message;
}
}