Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/audio/AudioFormatNotSupportedException.java

    r315 r1102  
    66 * @author Brook Novak
    77 */
    8 public class AudioFormatNotSupportedException extends Exception {
     8public class AudioFormatNotSupportedException extends Exception
     9{
    910        protected static final long serialVersionUID = 0L;
    1011       
    11         public AudioFormatNotSupportedException() {
     12        public AudioFormatNotSupportedException()
     13        {
    1214                super();
    1315        }
    1416       
    15         public AudioFormatNotSupportedException(String message) {
     17        public AudioFormatNotSupportedException(String message)
     18        {
    1619                super(message);
    1720        }
    1821       
    19         public AudioFormatNotSupportedException(String message, Exception inner) {
     22        public AudioFormatNotSupportedException(String message, Exception inner)
     23        {
    2024                super(message, inner);
    2125        }
Note: See TracChangeset for help on using the changeset viewer.