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

org.openapi4j.core.exception.DecodeException Maven / Gradle / Ivy

package org.openapi4j.core.exception;

/**
 * Exception for decoding/de-serialization representation.
 */
public class DecodeException extends Exception {
  public DecodeException(String message) {
    super(message);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy