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

com.ecwid.apiclient.v3.exception.EcwidApiException.kt Maven / Gradle / Ivy

package com.ecwid.apiclient.v3.exception

data class EcwidApiException(
	val statusCode: Int? = null,
	val reasonPhrase: String? = null,
	val code: String? = null,
	override val message: String? = null,
	override val cause: Throwable? = null
) : Exception(message, cause)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy