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