com.perforce.p4java.exception.ClientError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of p4java Show documentation
Show all versions of p4java Show documentation
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!
package com.perforce.p4java.exception;
/**
* Signals a serious and probably unrecoverable client error in an underlying
* transport layer.
*
*/
public class ClientError extends P4JavaError {
/**
* serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
* Create an empty P4Java client error
*/
public ClientError() {
}
/**
* Create a P4Java client error
*
* @param message message
*/
public ClientError(String message) {
super(message);
}
/**
* Create a P4Java client error
*
* @param cause cause
*/
public ClientError(Throwable cause) {
super(cause);
}
/**
* Create a P4Java client error
*
* @param message message
* @param cause cause
*/
public ClientError(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy