com.worklight.adapters.rest.api.MFPServerOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adapter-maven-api Show documentation
Show all versions of adapter-maven-api Show documentation
IBM MFP Adapter api for adapter as a maven project. BuildNumber is : 8.0.2024082809
The newest version!
/*
* © Copyright IBM Corp. 2016
* All Rights Reserved. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
*/
package com.worklight.adapters.rest.api;
/**
*
* @deprecated Since version 8.0 this exception is never thrown.
*/
@Deprecated
public class MFPServerOperationException extends RuntimeException{
private static final long serialVersionUID = 1L;
public MFPServerOperationException(Throwable e) {
super(e);
}
public MFPServerOperationException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy