App Engine Java SDK version 1.9.25
[gae.git] / java / src / main / com / google / apphosting / utils / config / AppEngineConfigException.java
blobd1d5b0435b4b2e6e653a7e68adffbac0147e5ad1
1 // Copyright 2008 Google Inc. All Rights Reserved.
2 package com.google.apphosting.utils.config;
4 /**
5 * Describes a problem with the configuration of App Engine.
7 */
8 public class AppEngineConfigException extends RuntimeException {
10 public AppEngineConfigException(String message) {
11 super(message);
14 public AppEngineConfigException(String message, Throwable cause) {
15 super(message, cause);
18 public AppEngineConfigException(Throwable cause) {
19 super(cause);