Open Kilda Java Documentation
ImplementationError.java
Go to the documentation of this file.
1 package org.openkilda.wfm;
2 
3 public class ImplementationError extends Error {
4  public ImplementationError(String message) {
5  super(message);
6  }
7 }