mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
11 lines
236 B
Java
11 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);
|
|
}
|
|
}
|