/******************************************************************************* * Copyright (c) 2010-2011 VIVO Harvester Team. For full list of contributors, please see the AUTHORS file provided. * All rights reserved. * This program and the accompanying materials are made available under the terms of the new BSD license which accompanies this distribution, and is available at http://www.opensource.org/licenses/bsd-license.html ******************************************************************************/ package org.vivoweb.harvester.util.args; /** * A usage Exception * @author Christopher Haines hainesc@ufl.edu */ public class UsageException extends Exception { /** * serial version uid */ private static final long serialVersionUID = 2244660850681649757L; /** * Constructor */ public UsageException() { // nothing to do } }