com.github.dnbn.submerge.api.parser.exception.InvalidSubException 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 InvalidSubException extends RuntimeException {
private static final long serialVersionUID = -8431409375872882596L;
public InvalidSubException() {
}
public InvalidSubException(String arg0) {
super(arg0);
}
public InvalidSubException(Throwable arg0) {
super(arg0);
}
public InvalidSubException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public InvalidSubException(String arg0, Throwable arg1, boolean arg2, boolean arg3) {
super(arg0, arg1, arg2, arg3);
}
}