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