org.enodeframework.domain.DomainExceptionMessage.kt Maven / Gradle / Ivy
package org.enodeframework.domain
import org.enodeframework.messaging.Message
interface DomainExceptionMessage : Message {
/**
* Serialize the current exception info to the given dictionary.
*/
fun serializeTo(serializableInfo: MutableMap)
/**
* Restore the current exception from the given dictionary.
*/
fun restoreFrom(serializableInfo: MutableMap)
}