Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class NumberFormatException : Exception
- {
- public NumberFormatException (string qty) : base(qty) { }
- }
- class StringFormatException : Exception
- {
- public StringFormatException (string name) : base (name) { }
- }
- class CurrencyFormatException : Exception
- {
- public CurrencyFormatException (string price) : base (price) { }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement