1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / log / LogServiceException.java
blob161331de5e12aa1d9ef438e48525f1d3d90c6bb9
1 // Copyright 2011 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.log;
5 /**
6 * Log errors apart from InvalidRequestException. These errors will generally
7 * benefit from retrying the operation.
11 public final class LogServiceException extends RuntimeException {
12 private static final long serialVersionUID = 4330439878478751420L;
14 /**
15 * Constructs a new LogServiceException with an error message.
16 * @param errorDetail Log service error detail.
18 public LogServiceException(String errorDetail) {
19 super(errorDetail);