9 lines
254 B
Java
9 lines
254 B
Java
package eu.crushedpixel.replaymod.online.urischeme;
|
|
|
|
public class OSXUriScheme extends UriScheme {
|
|
@Override
|
|
public void install() throws Exception {
|
|
throw new UnsupportedOperationException("OSX URI scheme not yet implemented.");
|
|
}
|
|
}
|