fcl/exceptions/Aborted.java
2021-06-25 13:57:34 +02:00

7 lines
142 B
Java

package com.vectron.fcl.exceptions;
public class Aborted extends FclException {
public Aborted(String str) {
super(str);
}
}