Class MidiProcessor.ExceededMidiChannelsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.github.noahr_atc.midisplitter.MidiProcessor.ExceededMidiChannelsException
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- MidiProcessor
public static class MidiProcessor.ExceededMidiChannelsException extends Exception implements Serializable
Indicates that all 16 MIDI channels are in use and the current note cannot be distributed to a unique channel.- Since:
- 2020-03-08
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExceededMidiChannelsException()
Constructs aExceededMidiChannelsException
with a detailed message ofnull
.ExceededMidiChannelsException(String message)
Constructs anExceededMidiChannelsException
with a specific detailed error message.ExceededMidiChannelsException(String message, Throwable cause)
Constructs anExceededMidiChannelsException
containing an error message and the cause of the exception.ExceededMidiChannelsException(Throwable cause)
Constructs anExceededMidiChannelsException
containing the cause of the exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ExceededMidiChannelsException
public ExceededMidiChannelsException()
Constructs aExceededMidiChannelsException
with a detailed message ofnull
.
-
ExceededMidiChannelsException
public ExceededMidiChannelsException(String message)
Constructs anExceededMidiChannelsException
with a specific detailed error message.- Parameters:
message
- the detailed error message to be contained
-
ExceededMidiChannelsException
public ExceededMidiChannelsException(Throwable cause)
Constructs anExceededMidiChannelsException
containing the cause of the exception.- Parameters:
cause
- the throwable that caused theExceededMidiChannelsException
to be raised
-
ExceededMidiChannelsException
public ExceededMidiChannelsException(String message, Throwable cause)
Constructs anExceededMidiChannelsException
containing an error message and the cause of the exception.- Parameters:
message
- the detailed error message to be containedcause
- the throwable that caused theExceededMidiChannelsException
to be raised
-
-