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

com.perforce.p4java.exception.ProtocolError Maven / Gradle / Ivy

Go to download

P4Java, the Perforce Java API is a Java-native API for accessing Perforce SCM services from within Java applications, servlets, plug-ins, and other Java contexts.

The newest version!
/*
 * Copyright 2009 Perforce Software Inc., All Rights Reserved.
 */
package com.perforce.p4java.exception;

/**
 * Signals a serious and probably unrecoverable protocol error
 * in an underlying transport layer.
 * 
 *
 */

public class ProtocolError extends P4JavaError {

	private static final long serialVersionUID = 1L;
	
	public ProtocolError() {
	}

	public ProtocolError(String message) {
		super(message);
	}

	public ProtocolError(Throwable cause) {
		super(cause);
	}

	public ProtocolError(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy