Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / log / LogServiceException.java
blobc9b3edebb1e173d419828ce54fb7a239eb9e804d
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 LogServiceException(String errorDetail) {
19 super(errorDetail);