blob: 1f10ee4f6334b5039783c13626e5f5ab46998584 [file] [log] [blame]
package com.android.hotspot2.asn1;
import java.io.IOException;
public class DecodeException extends IOException {
private final int mOffset;
public DecodeException(String message, int offset) {
super(message);
mOffset = offset;
}
@Override
public String toString() {
return super.toString() + " at " + mOffset;
}
}