Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / tools / admin / VerificationCodeReceiverRedirectUriException.java
blobdc6b1bdb6176d29418f6e1d4953475c28bb4214f
1 // Copyright 2012 Google Inc. All Rights Reserved.
3 package com.google.appengine.tools.admin;
5 /**
6 * Exception thrown when the VerificationCodeReceiver could not get a RedirectUri.
8 */
9 public class VerificationCodeReceiverRedirectUriException extends Exception {
10 public VerificationCodeReceiverRedirectUriException(String message, Throwable cause) {
11 super(message, cause);
14 public VerificationCodeReceiverRedirectUriException(String message) {
15 super(message);
18 public VerificationCodeReceiverRedirectUriException() {
19 super();