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

ai.mantik.elements.errors.RemoteRegistryException.scala Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of the Mantik Project.
 * Copyright (c) 2020-2021 Mantik UG (Haftungsbeschränkt)
 * Authors: See AUTHORS file
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License version 3.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.
 *
 * Additionally, the following linking exception is granted:
 *
 * If you modify this Program, or any covered work, by linking or
 * combining it with other code, such other code is not for that reason
 * alone subject to any of the requirements of the GNU Affero GPL
 * version 3.
 *
 * You can be released from the requirements of the license by purchasing
 * a commercial license.
 */
package ai.mantik.elements.errors

/**
  * An Exception from the Remote Registry.
  * @param remoteCode the remote error code as in [[ai.mantik.elements.registry.api.ApiErrorResponse]].
  */
class RemoteRegistryException(
    val httpStatusCode: Int,
    val remoteCode: String,
    val message: String,
    cause: Throwable = null
) extends MantikException(ErrorCodes.RemoteRegistryFailure, message)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy