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