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

org.openbaton.exceptions.VNFPackageFormatException Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package org.openbaton.exceptions;

/** Created by mob on 05/04/2017. */
public class VNFPackageFormatException extends Exception {

  public VNFPackageFormatException() {}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy