mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 06:01:13 +02:00
Update portmidi to SVN r227.
This commit is contained in:
12
lib-src/portmidi/pm_java/jportmidi/JPortMidiException.java
Normal file
12
lib-src/portmidi/pm_java/jportmidi/JPortMidiException.java
Normal file
@@ -0,0 +1,12 @@
|
||||
// JPortMidiException -- thrown by JPortMidi methods
|
||||
|
||||
package jportmidi;
|
||||
|
||||
public class JPortMidiException extends Exception {
|
||||
public int error = 0;
|
||||
public JPortMidiException(int err, String msg) {
|
||||
super(msg);
|
||||
error = err;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user