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