App Engine Java SDK version 1.7.0
[gae.git] / java / src / main / com / google / appengine / tools / admin / AdminException.java
blobff6ed4ce11e0b1563c0b4806c050a622c78d00fd
1 // Copyright 2008 Google Inc. All Rights Reserved.
3 package com.google.appengine.tools.admin;
5 /**
6 * Thrown when an unrecoverable failure occurs while communicating
7 * with the remote administration console. This may happen, for example,
8 * in case of a network failure. In cases of failure, it may be necessary
9 * to {@link AppAdmin#rollback rollback} the prior application update
10 * before attempting another.
13 public class AdminException extends RuntimeException {
15 public AdminException(String message, Throwable cause) {
16 super(message, cause);
19 public AdminException(String message) {
20 super(message);