| 12345678910111213 |
- using System;
- namespace Mono.CompilerServices.SymbolWriter
- {
- public class MonoSymbolFileException : Exception
- {
- public MonoSymbolFileException()
- {
- }
- public MonoSymbolFileException(string message, params object[] args) : base(string.Format(message, args))
- {
- }
- }
- }
|