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

datamaintain.core.exception.DatamaintainException.kt Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package datamaintain.core.exception

import datamaintain.core.step.Step
import datamaintain.domain.report.Report
import datamaintain.domain.report.ReportBuilder

class DatamaintainException(
    override val message: String,
    val step: Step,
    val report: Report,
    override val resolutionMessage: String = ""
) : DatamaintainBaseException(message) {
    constructor(
        message: String,
        step: Step,
        reportBuilder: ReportBuilder,
        resolutionMessage: String = ""
    ) : this(message, step, reportBuilder.toReport(), resolutionMessage)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy