mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
7 lines
162 B
Java
7 lines
162 B
Java
package com.vectron.fcl.exceptions;
|
|
|
|
public class NotUnderstood extends FclException {
|
|
public NotUnderstood(String message) {
|
|
super(message);
|
|
}
|
|
}
|