org.enodeframework.domain.IDomainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.domain;
import org.enodeframework.messaging.IMessage;
import java.util.Map;
public interface IDomainException extends IMessage {
/**
* Serialize the current exception info to the given dictionary.
*/
void serializeTo(Map serializableInfo);
/**
* Restore the current exception from the given dictionary.
*/
void restoreFrom(Map serializableInfo);
}