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