Version 1.7.4
[gae.git] / java / src / main / com / google / appengine / api / labs / servers / ServersException.java
blobd3789ec6e4f4c593cc8ce551322942e5fd05396a
1 package com.google.appengine.api.labs.servers;
3 /**
4 * Exception thrown by the {@link ServersService}.
6 */
7 public class ServersException extends RuntimeException {
9 ServersException(String detail) {
10 super(detail);