Open Kilda Java Documentation
UnsupportedActionException.java
Go to the documentation of this file.
1 package org.openkilda.wfm.error;
2 
4  private final String action;
5 
6  public UnsupportedActionException(String action) {
7  super(String.format("Try to \"call\" unsupported action \"%s\"", action));
8  this.action = action;
9  }
10 
11  public String getAction() {
12  return action;
13  }
14 }