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

com.trankimtung.quickfixj.spring.boot.starter.exception.QuickFixJException.kt Maven / Gradle / Ivy

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)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy