1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / modules / ModulesException.java
blob57f9416eb31195f01b3914b5ae857331fb311b79
1 package com.google.appengine.api.modules;
3 /**
4 * Exception thrown by the {@link ModulesService}.
6 */
7 public class ModulesException extends RuntimeException {
9 public ModulesException(String detail) {
10 super(detail);
13 public ModulesException(String detail, Throwable cause) {
14 super(detail, cause);
17 private static final long serialVersionUID = -5918019495879037930L;