indentation fix
[mono.git] / mcs / class / corlib / System.Resources / MissingManifestResourceException.cs
1 //
2 // System.Resources.MissingManifestResourceException.cs
3 //
4 // Author:
5 //      Duncan Mak (duncan@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.                http://www.ximian.com
8 //
9
10 using System.Globalization;
11 using System.Runtime.Serialization;
12
13 namespace System.Resources
14 {
15
16            public class MissingManifestResourceException: Exception
17            {
18                          private string param;
19
20                          // Constructors
21                          public MissingManifestResourceException ()
22                                     : base (Locale.GetText ("The assembly does not contain the resources for the required culture."))
23                                     {
24                                     }
25                                                                         
26                          public MissingManifestResourceException (string message)
27                                     :base (message)
28                                     {
29                                     }
30
31                          public MissingManifestResourceException (SerializationInfo info, StreamingContext context)
32                                     :base (info, context)
33                                     {
34                                     }
35
36                          public MissingManifestResourceException (String message, Exception e)
37                                     :base (message, e)
38                                     {
39                                     }
40            }
41 }