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 
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 }
MessageFormatException(Tuple tuple, Throwable throwable)