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

Added tag model

Files:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/AddInViews/AudioModel.AddInViews/AudioUnsupportedException.cs

    r2 r3  
    2424{ 
    2525    [Serializable] 
    26     public class UnsupportedAudioException : Exception 
     26    public class AudioUnsupportedException : Exception 
    2727    { 
    28         public UnsupportedAudioException() 
     28        public AudioUnsupportedException() 
    2929            : base() 
    3030        { 
    3131        } 
    3232 
    33         public UnsupportedAudioException(string message) 
     33        public AudioUnsupportedException(string message) 
    3434            : base(message) 
    3535        { 
    3636        } 
    3737 
    38         public UnsupportedAudioException(string message, Exception innerException) 
     38        public AudioUnsupportedException(string message, Exception innerException) 
    3939            : base(message, innerException) 
    4040        { 
    4141        } 
    4242 
    43         protected UnsupportedAudioException(SerializationInfo info, StreamingContext context) 
     43        protected AudioUnsupportedException(SerializationInfo info, StreamingContext context) 
    4444            : base(info, context) 
    4545        {