Skip to content

Commit

Permalink
Add protocol dto classes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
Kindrat committed Nov 14, 2015
1 parent 56c9a99 commit b007725
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.github.nginate.kafka.exceptions;

public class KafkaException extends RuntimeException {
private static final long serialVersionUID = -9198274319918051416L;

public KafkaException(String message) {
super(message);
}

public KafkaException(String message, Throwable cause) {
super(message, cause);
}
}

0 comments on commit b007725

Please sign in to comment.