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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.ValidationException.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cleanrooms.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata

/**
 * The input fails to satisfy the specified constraints.
 */
public class ValidationException private constructor(builder: Builder) : CleanRoomsException(builder.message) {

    /**
     * Validation errors for specific input parameters.
     */
    public val fieldList: List? = builder.fieldList
    /**
     * A reason code for the exception.
     */
    public val reason: aws.sdk.kotlin.services.cleanrooms.model.ValidationExceptionReason? = builder.reason

    init {
        sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
    }

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanrooms.model.ValidationException = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ValidationException(")
        append("fieldList=$fieldList,")
        append("message=$message,")
        append("reason=$reason")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = fieldList?.hashCode() ?: 0
        result = 31 * result + (message?.hashCode() ?: 0)
        result = 31 * result + (reason?.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 ValidationException

        if (fieldList != other.fieldList) return false
        if (message != other.message) return false
        if (reason != other.reason) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanrooms.model.ValidationException = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Validation errors for specific input parameters.
         */
        public var fieldList: List? = null
        public var message: kotlin.String? = null
        /**
         * A reason code for the exception.
         */
        public var reason: aws.sdk.kotlin.services.cleanrooms.model.ValidationExceptionReason? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cleanrooms.model.ValidationException) : this() {
            this.fieldList = x.fieldList
            this.message = x.message
            this.reason = x.reason
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.cleanrooms.model.ValidationException = ValidationException(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy