mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
13 lines
255 B
Java
13 lines
255 B
Java
// 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;
|
|
}
|
|
}
|
|
|