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

com.github.thorbenkuck.netcom2.exceptions.RemoteObjectInvalidMethodException Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.netcom2.exceptions;

import com.github.thorbenkuck.netcom2.network.server.RemoteObjectRegistration;

/**
 * This Exception will be thrown, if the {@link RemoteObjectRegistration} receives
 * a {@link com.github.thorbenkuck.netcom2.network.shared.comm.RemoteAccessCommunicationRequest} with a declared method,
 * that the defined class does not have.
 *
 * @version 1.0
 * @see RemoteObjectRegistration
 * @since 1.0
 */
public class RemoteObjectInvalidMethodException extends RemoteRequestException {

	/**
	 * {@inheritDoc}
	 */
	public RemoteObjectInvalidMethodException(String message) {
		super(message);
	}

	/**
	 * {@inheritDoc}
	 */
	public RemoteObjectInvalidMethodException(Throwable throwable) {
		super(throwable);
	}

	/**
	 * {@inheritDoc}
	 */
	public RemoteObjectInvalidMethodException(String message, Throwable throwable) {
		super(message, throwable);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy