- Timestamp:
- 11/16/10 02:43:21 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableSerializer.cs
r4175 r4806 47 47 hookCache = new Dictionary<HookDesignator, List<StorableReflection.Hook>>(); 48 48 } 49 [StorableConstructor] 50 private StorableSerializer(bool deserializing) : this() { } 49 51 50 52 #region ICompositeSerializer implementation … … 129 131 try { 130 132 return GetConstructor(type)(); 131 } catch (TargetInvocationException x) { 133 } 134 catch (TargetInvocationException x) { 132 135 throw new PersistenceException( 133 136 "Could not instantiate storable object: Encountered exception during constructor call",
Note: See TracChangeset
for help on using the changeset viewer.