Open Kilda Java Documentation
MessageFormatException.java
Go to the documentation of this file.
1
package
org.openkilda.wfm.error;
2
3
import
org
.apache.storm.tuple.Tuple;
4
5
public
class
MessageFormatException
extends
AbstractException
{
6
private
Tuple tuple;
7
8
public
MessageFormatException
(Tuple tuple, Throwable throwable) {
9
super(
"Invalid input message/tuple"
, throwable);
10
11
this.tuple = tuple;
12
}
13
14
public
MessageFormatException
(String s, Throwable throwable) {
15
super(s, throwable);
16
}
17
18
public
Tuple
getTuple
() {
19
return
tuple;
20
}
21
}
org.openkilda.wfm.error.MessageFormatException.MessageFormatException
MessageFormatException(Tuple tuple, Throwable throwable)
Definition:
MessageFormatException.java:8
org.openkilda.wfm.error.MessageFormatException.getTuple
Tuple getTuple()
Definition:
MessageFormatException.java:18
org
org.openkilda.wfm.error.AbstractException
Definition:
AbstractException.java:18
org.openkilda.wfm.error.MessageFormatException
Definition:
MessageFormatException.java:5
org.openkilda.wfm.error.MessageFormatException.MessageFormatException
MessageFormatException(String s, Throwable throwable)
Definition:
MessageFormatException.java:14
open-kilda-develop
services
wfm
src
main
java
org
openkilda
wfm
error
MessageFormatException.java
Generated by
1.8.14