ru.yandex.qatools.fsm.camel.common.MetadataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yatomata-camel Show documentation
Show all versions of yatomata-camel Show documentation
Camel integration for Yatomata FSM
The newest version!
package ru.yandex.qatools.fsm.camel.common;
/**
* Thrown when there's some metadata reading error
* @author: Ilya Sadykov (mailto: [email protected])
*/
public class MetadataException extends RuntimeException {
public MetadataException(String message) {
super(message);
}
public MetadataException(String message, Throwable cause) {
super(message, cause);
}
}