Ignore:
Timestamp:
2/8/2010 7:09:55 AM (2 years ago)
Author:
lowjoel
Message:

Do not localise exceptions which aren't meant to be seen by the user. User-visible exceptions will be dealt with in a separate ticket. Do not throw exceptions to indicate handleable errors (notably, when erasing unused space without administrator permissions) Addresses #275: Code Review

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/CodeReview/Eraser.Manager/PRNG.cs

    r1681 r1767  
    104104            if (minValue > maxValue) 
    105105                throw new ArgumentOutOfRangeException("minValue", minValue, 
    106                     S._("minValue is greater than maxValue")); 
     106                    "minValue is greater than maxValue"); 
    107107            else if (minValue == maxValue) 
    108108                return minValue; 
Note: See TracChangeset for help on using the changeset viewer.