-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from KabanFriends/dev/song-refactor
Massive restructuring
- Loading branch information
Showing
70 changed files
with
1,700 additions
and
1,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
common/src/main/java/io/github/kabanfriends/craftgr/audio/AudioPlayerException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.github.kabanfriends.craftgr.audio; | ||
|
||
public class AudioPlayerException extends Exception { | ||
|
||
public AudioPlayerException(String message) { | ||
super(message); | ||
} | ||
|
||
public AudioPlayerException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public AudioPlayerException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
common/src/main/java/io/github/kabanfriends/craftgr/audio/ConnectionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.github.kabanfriends.craftgr.audio; | ||
|
||
public class ConnectionException extends Exception { | ||
|
||
public ConnectionException(String message) { | ||
super(message); | ||
} | ||
|
||
public ConnectionException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public ConnectionException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
Oops, something went wrong.