Home
last modified time | relevance | path

Searched refs:BadSecretException (Results 1 – 4 of 4) sorted by relevance

/external/google-tv-pairing-protocol/java/src/com/google/polo/exception/
DBadSecretException.java22 public class BadSecretException extends PoloException { class
24 public BadSecretException() { in BadSecretException() method in BadSecretException
28 public BadSecretException(String message, Throwable cause) { in BadSecretException() method in BadSecretException
32 public BadSecretException(String message) { in BadSecretException() method in BadSecretException
36 public BadSecretException(Throwable cause) { in BadSecretException() method in BadSecretException
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
DPairingSession.java21 import com.google.polo.exception.BadSecretException;
503 throw new BadSecretException("Secret failed local check."); in doPairingPhase()
520 throw new BadSecretException("Inband secret did not match. " + in doPairingPhase()
553 throw new BadSecretException("Inband secret did not match. " + in doPairingPhase()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
DJsonMessageBuilder.java19 import com.google.polo.exception.BadSecretException;
402 } else if (exception instanceof BadSecretException) { in getErrorJson()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
DProtobufWireAdapter.java19 import com.google.polo.exception.BadSecretException;
266 } else if (e instanceof BadSecretException) { in sendErrorMessage()