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