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