blob: 0bd5072d3c3a44f61efdc1230654c3a7f7e05936 [file] [log] [blame]
Yuta HIGUCHI66ca1bf2014-03-12 18:34:09 -07001package net.onrc.onos.datastore;
2
3//
4// Not sure if we really need this base class.
5// Just copied hierarchy from RAMCloud.
6//
7/**
8 * Base exception class for conditional write, etc. failure.
9 */
10public class RejectRulesException extends Exception {
11 private static final long serialVersionUID = -1444683012320423530L;
12
13 public RejectRulesException(final String message) {
14 super(message);
15 }
16
17 public RejectRulesException(final String message, final Throwable cause) {
18 super(message, cause);
19 }
20
21 public RejectRulesException(final Throwable cause) {
22 super(cause);
23 }
24}