001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.exception;
007
008/**
009 * Exception thrown when the device has insufficient storage to complete the operation.
010 *
011 * @author Daniel Bernstein
012 * @since Oct 7, 2016
013 */
014public class InsufficientStorageException extends RuntimeException {
015
016    private static final long serialVersionUID = 1L;
017
018    /**
019     * Exception with message
020     *
021     * @param message the message
022     * @param t the throwable
023     */
024    public InsufficientStorageException(final String message, final Throwable t) {
025        super(message, t);
026    }
027}