com.github.dakusui.floorplan.exception.FloorPlanException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of floorplan Show documentation
Show all versions of floorplan Show documentation
A library to model a heterogeneous and distributed software
system for testing
package com.github.dakusui.floorplan.exception;
abstract class FloorPlanException extends RuntimeException {
FloorPlanException(String message) {
super(message);
}
}