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

com.faunadb.client.errors.InvalidWriteTimeException Maven / Gradle / Ivy

The newest version!
package com.faunadb.client.errors;

import java.util.List;

public class InvalidWriteTimeException extends FaunaException {

  public InvalidWriteTimeException(final String message, final int httpStatusCode, final List position) {
    super(message, httpStatusCode, position);
  }

  @Override
  public CoreExceptionCodes code() {
    return CoreExceptionCodes.INVALID_WRITE_TIME;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy