7 lines
164 B
Java
7 lines
164 B
Java
|
|
package org.jcodec.api;
|
||
|
|
|
||
|
|
public class UnhandledStateException extends RuntimeException {
|
||
|
|
public UnhandledStateException(String string) {
|
||
|
|
super(string);
|
||
|
|
}
|
||
|
|
}
|