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

org.tiogasolutions.dev.common.exceptions.ApiNotImplementedException Maven / Gradle / Ivy

There is a newer version: 5.2.6
Show newest version
package org.tiogasolutions.dev.common.exceptions;

import org.tiogasolutions.dev.common.fine.FineMessage;
import org.tiogasolutions.dev.common.fine.FineMessageSet;

import static org.tiogasolutions.dev.common.net.HttpStatusCode.NOT_IMPLEMENTED;

public class ApiNotImplementedException extends Api5xxException {

  private static final long serialVersionUID = 1L;

  /*default*/ ApiNotImplementedException() {
    super(NOT_IMPLEMENTED);
  }

  /*default*/ ApiNotImplementedException(String message, String... traits) {
    super(NOT_IMPLEMENTED, message, traits);
  }

  /*default*/ ApiNotImplementedException(Throwable ex, String... traits) {
    super(NOT_IMPLEMENTED, ex, traits);
  }

  /*default*/ ApiNotImplementedException(String message, Throwable ex, String... traits) {
    super(NOT_IMPLEMENTED, message, ex, traits);
  }

  /*default*/ ApiNotImplementedException(FineMessage richMessage) {
    super(NOT_IMPLEMENTED, richMessage);
  }

  /*default*/ ApiNotImplementedException(FineMessage richMessage, Throwable ex) {
    super(NOT_IMPLEMENTED, richMessage, ex);
  }

  /*default*/ ApiNotImplementedException(FineMessageSet messageSet) {
    super(NOT_IMPLEMENTED, messageSet);
  }

  /*default*/ ApiNotImplementedException(FineMessageSet messageSet, Throwable ex) {
    super(NOT_IMPLEMENTED, messageSet, ex);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy