commonMain.aws.sdk.kotlin.services.glue.model.EntityNotFoundException.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* A specified entity does not exist
*/
public class EntityNotFoundException private constructor(builder: Builder) : GlueException(builder.message) {
/**
* Indicates whether or not the exception relates to a federated source.
*/
public val fromFederationSource: kotlin.Boolean? = builder.fromFederationSource
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.EntityNotFoundException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EntityNotFoundException(")
append("fromFederationSource=$fromFederationSource,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = fromFederationSource?.hashCode() ?: 0
result = 31 * result + (message?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as EntityNotFoundException
if (fromFederationSource != other.fromFederationSource) return false
if (message != other.message) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.EntityNotFoundException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Indicates whether or not the exception relates to a federated source.
*/
public var fromFederationSource: kotlin.Boolean? = null
/**
* A message describing the problem.
*/
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.EntityNotFoundException) : this() {
this.fromFederationSource = x.fromFederationSource
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.EntityNotFoundException = EntityNotFoundException(this)
internal fun correctErrors(): Builder {
return this
}
}
}