mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-12 20:01:25 +01:00
8 lines
142 B
Java
8 lines
142 B
Java
|
package com.vectron.fcl.exceptions;
|
||
|
|
||
|
public class Aborted extends FclException {
|
||
|
public Aborted(String str) {
|
||
|
super(str);
|
||
|
}
|
||
|
}
|