com.venky.core.checkpoint.InvalidCheckpointException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.core.checkpoint;
public class InvalidCheckpointException extends RuntimeException{
/**
*
*/
private static final long serialVersionUID = 5556403130838767932L;
public InvalidCheckpointException(){
super();
}
public InvalidCheckpointException(String message){
super(message);
}
}