1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / files / FinalizationException.java
blob0dbd4d2c1a720e1ef9cffe057bca037731bdfefa
1 // Copyright 2010 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.files;
5 import com.google.apphosting.api.ApiProxy;
7 import java.io.IOException;
9 /**
10 * An {@code Exception} that indicates that a file is in the wrong finalization
11 * state. This occurs if an attempt is made to write to a file that has already
12 * been finalized or to read from a file that has not yet been finalized.
15 @Deprecated
16 public class FinalizationException extends IOException {
17 FinalizationException() {
20 FinalizationException(String message, ApiProxy.ApplicationException cause) {
21 super(message, cause);