All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alluxio.exception.status.FailedPreconditionException Maven / Gradle / Ivy

There is a newer version: 313
Show newest version
/*
 * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
 * (the "License"). You may not use this work except in compliance with the License, which is
 * available at www.apache.org/licenses/LICENSE-2.0
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied, as more fully set forth in the License.
 *
 * See the NOTICE file distributed with this work for information regarding copyright ownership.
 */

package alluxio.exception.status;

import io.grpc.Status;

/**
 * Exception indicating that operation was rejected because the system is not in a state required
 * for the operation's execution. For example, directory to be deleted may be non-empty, an rmdir
 * operation is applied to a non-directory, etc.
 *
 * A litmus test that may help a service implementor in deciding between
 * FailedPreconditionException, AbortedException, and UnavailableException:
 *
 * 
 *   (a) Use UnavailableException if the client can retry just the failing call.
 *   (b) Use AbortedException if the client should retry at a higher-level (e.g., restarting a
 *       read-modify-write sequence).
 *   (c) Use FailedPreconditionException if the client should not retry until the system state has
 *       been explicitly fixed. E.g., if an "rmdir" fails because the directory is non-empty,
 *       FailedPreconditionException should be thrown since the client should not retry unless they
 *       have first fixed up the directory by deleting files from it.
 *   (d) Use FailedPreconditionException if the client performs conditional REST Get/Update/Delete
 *       on a resource and the resource on the server does not match the condition. E.g.,
 *       conflicting read-modify-write on the same resource.
 * 
*/ public class FailedPreconditionException extends AlluxioStatusException { private static final long serialVersionUID = 7049644985518518816L; private static final Status STATUS = Status.FAILED_PRECONDITION; /** * @param message the exception message */ public FailedPreconditionException(String message) { super(STATUS.withDescription(message)); } /** * @param cause the cause of the exception */ public FailedPreconditionException(Throwable cause) { super(STATUS.withDescription(cause.getMessage()).withCause(cause)); } /** * @param message the exception message * @param cause the cause of the exception */ public FailedPreconditionException(String message, Throwable cause) { super(STATUS.withDescription(message).withCause(cause)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy