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

org.picocontainer.gems.util.NoSuchMethodRuntimeException Maven / Gradle / Ivy

The newest version!
/*****************************************************************************
 * Copyright (C) PicoContainer Organization. All rights reserved.            *
 * ------------------------------------------------------------------------- *
 * The software in this package is published under the terms of the BSD      *
 * style license a copy of which has been included with this distribution in *
 * the LICENSE.txt file.                                                     *
 *                                                                           *
 * Original code by Centerline Computers, Inc.                               *
 *****************************************************************************/
package org.picocontainer.gems.util;

import org.picocontainer.PicoException;

/**
 * Runtime exception version of {@link java.lang.NoSuchMethodException}.
 * 
 * @author Michael Rimov
 */
@SuppressWarnings("serial")
public class NoSuchMethodRuntimeException extends PicoException {


	/**
	 * 
	 */
	public NoSuchMethodRuntimeException() {
		super();
	}

	/**
	 * @param message
	 */
	public NoSuchMethodRuntimeException(final String message) {
		super(message);
	}

	/**
	 * @param cause
	 */
	public NoSuchMethodRuntimeException(final Throwable cause) {
		super(cause);
	}

	/**
	 * @param message
	 * @param cause
	 */
	public NoSuchMethodRuntimeException(final String message,
			final Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy