Lines Matching refs:MidiUnavailableException

159  * If that fails, too, a <code>MidiUnavailableException</code>
207 * @throws MidiUnavailableException if the requested device is not available
213 public static MidiDevice getMidiDevice(MidiDevice.Info info) throws MidiUnavailableException {
261 * @throws MidiUnavailableException if the default receiver is not
265 public static Receiver getReceiver() throws MidiUnavailableException {
266 // may throw MidiUnavailableException
312 * @throws MidiUnavailableException if the default transmitter is not
316 public static Transmitter getTransmitter() throws MidiUnavailableException {
317 // may throw MidiUnavailableException
342 * @throws MidiUnavailableException if the synthesizer is not
346 public static Synthesizer getSynthesizer() throws MidiUnavailableException {
347 // may throw MidiUnavailableException
379 * @throws MidiUnavailableException if the sequencer is not
388 public static Sequencer getSequencer() throws MidiUnavailableException {
427 * @throws MidiUnavailableException if the sequencer is not
438 throws MidiUnavailableException {
449 MidiUnavailableException mue = null;
467 } catch (MidiUnavailableException e) {
469 if (e instanceof MidiUnavailableException) {
470 mue = (MidiUnavailableException) e;
479 if (e instanceof MidiUnavailableException) {
480 mue = (MidiUnavailableException) e;
493 throw new MidiUnavailableException("no receiver available");
1100 * <code>MidiUnavailableException</code>, with the catched
1108 throws MidiUnavailableException{
1112 MidiUnavailableException mae = new MidiUnavailableException();