Changeset 1175
- Timestamp:
- 7/6/2009 8:52:16 AM (4 years ago)
- Location:
- trunk/eraser6/Eraser.Manager
- Files:
-
- 1 deleted
- 1 edited
- 1 moved
-
Eraser.Manager.csproj (modified) (2 diffs)
-
Manager.cd (deleted)
-
ManagerLibrary.cs (moved) (moved from trunk/eraser6/Eraser.Manager/Manager.cs) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser.Manager/Eraser.Manager.csproj
r1085 r1175 52 52 <Compile Include="DirectExecutor.cs" /> 53 53 <Compile Include="EntropySource.cs" /> 54 <Compile Include="Exception.cs" /> 54 55 <Compile Include="Executor.cs" /> 55 56 <Compile Include="FileSystem.cs" /> 56 57 <Compile Include="Language.cs" /> 57 58 <Compile Include="Logger.cs" /> 58 <Compile Include="Manager .cs" />59 <Compile Include="ManagerLibrary.cs" /> 59 60 <Compile Include="Method.cs" /> 60 61 <Compile Include="Plugins.cs" /> … … 75 76 <Name>Eraser.Util</Name> 76 77 </ProjectReference> 77 </ItemGroup>78 <ItemGroup>79 <None Include="Manager.cd" />80 78 </ItemGroup> 81 79 <ItemGroup> -
trunk/eraser6/Eraser.Manager/ManagerLibrary.cs
r1164 r1175 122 122 internal Plugin.DefaultHost Host; 123 123 } 124 125 /// <summary>126 /// Fatal exception class.127 /// </summary>128 [Serializable]129 public class FatalException : Exception130 {131 public FatalException()132 {133 }134 135 public FatalException(string message)136 : base(message)137 {138 }139 140 protected FatalException(SerializationInfo info, StreamingContext context)141 : base(info, context)142 {143 }144 145 public FatalException(string message, Exception innerException)146 : base(message, innerException)147 {148 }149 }150 124 }
Note: See TracChangeset
for help on using the changeset viewer.
