Show
Ignore:
Timestamp:
10/26/08 15:59:45 (2 months ago)
Author:
Jeremy
Message:

Added tag model

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/AddIns/WaveAudio/WaveAudio.cs

    r2 r3  
    4949                    break; 
    5050                default: 
    51                     throw new UnsupportedAudioException("The Wave format '0x" + waveFormatEx.FormatTag.ToString("X", CultureInfo.CurrentCulture) + "' is not supported."); 
     51                    throw new AudioUnsupportedException("The Wave format '0x" + waveFormatEx.FormatTag.ToString("X", CultureInfo.CurrentCulture) + "' is not supported."); 
    5252            } 
    5353 
     
    5555                channels = waveFormatEx.Channels; 
    5656            else 
    57                 throw new UnsupportedAudioException(waveFormatEx.Channels + "-channel Wave files are not supported."); 
     57                throw new AudioUnsupportedException(waveFormatEx.Channels + "-channel Wave files are not supported."); 
    5858 
    5959            bitrate = (int)(waveFormatEx.AvgBytesPerSec * 8);