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.common.lang;
007
008/**
009 * Same as Callable but it does not have Exception in its signature
010 *
011 * @author pwinckles
012 */
013public interface UncheckedCallable<T> {
014    T call();
015}