de.codecentric.hikaku.converters.EndpointConverterException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hikaku-core Show documentation
Show all versions of hikaku-core Show documentation
A library that tests if the implementation of a REST-API meets its specification. This module contains the core elements which can be used to create additional converters and reporters.
package de.codecentric.hikaku.converters
/**
* Is thrown in case an [EndpointConverter] is not able to perform the conversion.
*/
class EndpointConverterException(message: String? = null, cause: Throwable? = null) : Throwable(message, cause) {
constructor(throwable: Throwable): this(throwable.message, throwable)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy