com.vmware.avi.sdk.AviApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avisdk Show documentation
Show all versions of avisdk Show documentation
Avi SDK is a java API which creates a session with controller and perform CRUD operations.
The newest version!
/*
* Copyright 2021 VMware, Inc.
* SPDX-License-Identifier: Apache License 2.0
*/
package com.vmware.avi.sdk;
/**
* This is a Exception class for throwing exception in controller communication.
*
* @author: Chaitanya Deshpande
*
*/
public class AviApiException extends Exception
{
private static final long serialVersionUID = 1L;
/** This is a default constructor */
public AviApiException()
{
super();
}
/**
* Constructor which construct string message.
*
* @param message
* Contains message of exception.
*/
public AviApiException(String message)
{
super(message);
}
/**
* Constructor which construct throwable cause.
*
* @param cause
* Contains throwable cause of any exception.
*/
public AviApiException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy