mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-03-09 14:33:32 +00:00
12 lines
211 B
Java
12 lines
211 B
Java
package ca.uhn.fhir.cli;
|
|
|
|
public class CommandFailureException extends Error {
|
|
|
|
public CommandFailureException(String theMessage) {
|
|
super(theMessage);
|
|
}
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
}
|