App Engine Java SDK version 1.9.8
[gae.git] / java / src / main / com / google / appengine / api / modules / UnexpectedStateException.java
blobd3ab119ec33df1aa3d6d173c66059fabc92dcfbe
1 package com.google.appengine.api.modules;
3 /**
4 * Thrown to indicate {ModulesService#startVersion} was called for
5 * a module version that was already started or {ModulesService#stopVersion}.
6 * was called for a module version that was already stopped.
7 */
8 class UnexpectedStateException extends ModulesException {
9 private static final long serialVersionUID = -8684383201515463564L;
10 UnexpectedStateException(String detail) {
11 super(detail);