Move UriScheme to extras module

This commit is contained in:
johni0702
2015-11-13 16:00:27 +01:00
parent 868d873fe8
commit 97d375dfce
7 changed files with 99 additions and 81 deletions

View File

@@ -0,0 +1,8 @@
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.");
}
}