com.github.dnbn.submerge.api.parser.exception.InvalidFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of submerge-api Show documentation
Show all versions of submerge-api Show documentation
Library to manage SRT and ASS subtitles
The newest version!
package com.github.dnbn.submerge.api.parser.exception;
public class InvalidFileException extends RuntimeException {
private static final long serialVersionUID = -943455563476464982L;
public InvalidFileException() {
}
public InvalidFileException(String message) {
super(message);
}
public InvalidFileException(Throwable cause) {
super(cause);
}
public InvalidFileException(String message, Throwable cause) {
super(message, cause);
}
public InvalidFileException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}