HomeSort by relevance Sort by last modified time
    Searched defs:InvalidAsn1DataException (Results 1 - 3 of 3) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
InvalidAsn1DataException.java 23 public class InvalidAsn1DataException extends Exception {
26 public InvalidAsn1DataException(int tag, String message) {
31 public InvalidAsn1DataException(int tag, String message, Throwable throwable) {
Asn1Decoder.java 82 * @throws InvalidAsn1DataException If the bytes cannot be parsed.
84 public Asn1Node nextNode() throws InvalidAsn1DataException {
102 throw new InvalidAsn1DataException(0, "Invalid length at position: " + offset);
109 throw new InvalidAsn1DataException(0, "Cannot parse tag at position: " + tagStart, e);
123 throw new InvalidAsn1DataException(
130 throw new InvalidAsn1DataException(
137 throw new InvalidAsn1DataException(
Asn1Node.java 86 * @throws InvalidAsn1DataException If the data bytes cannot be parsed.
88 public Builder addChildren(byte[] encodedBytes) throws InvalidAsn1DataException {
289 public boolean hasChild(int tag, int... tags) throws InvalidAsn1DataException {
306 throws TagNotFoundException, InvalidAsn1DataException {
341 throws TagNotFoundException, InvalidAsn1DataException {
368 public List<Asn1Node> getChildren() throws InvalidAsn1DataException {
392 * @throws InvalidAsn1DataException If the data bytes cannot be parsed.
394 public int asInteger() throws InvalidAsn1DataException {
399 throw new InvalidAsn1DataException(mTag, "Data bytes cannot be null.");
404 throw new InvalidAsn1DataException(mTag, "Cannot parse data bytes.", e)
    [all...]

Completed in 67 milliseconds