com.googlecode.d2j.dex.writer.CantNotFixContentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dex-writer Show documentation
Show all versions of dex-writer Show documentation
Dex/Dalvik writer for dex2jar
package com.googlecode.d2j.dex.writer;
import com.googlecode.d2j.reader.Op;
public class CantNotFixContentException extends RuntimeException {
private static final long serialVersionUID = -3939621228619424486L;
public CantNotFixContentException(Op op, String contentName, int v) {
super(String.format("content is not fit for op: %s, %s, value:0x%x",
op.displayName, contentName, v));
}
public CantNotFixContentException(Op op, String contentName, long v) {
super(String.format("content is not fit for op: %s, %s, value:0x%x",
op.displayName, contentName, v));
}
}