com.trankimtung.quickfixj.spring.boot.starter.exception.QuickFixJException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-spring-boot-starter Show documentation
Show all versions of quickfixj-spring-boot-starter Show documentation
A QuickFix/J Spring Boot starter
The newest version!
package com.trankimtung.quickfixj.spring.boot.starter.exception
import java.lang.RuntimeException
open class QuickFixJException(
message: String?,
throwable: Throwable?
) : RuntimeException(message, throwable) {
constructor(message: String) : this(message, null)
constructor() : this(null, null)
}