Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
LauncherAppException.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System;
4 
5 namespace SiliconStudio.LauncherApp
6 {
8  {
10  {
11  }
12 
13  public LauncherAppException(string message) : base(message)
14  {
15  }
16 
17  public LauncherAppException(string message, params object[] args)
18  : base(string.Format(message, args))
19  {
20  }
21 
22  public LauncherAppException(string message, Exception innerException)
23  : base(message, innerException)
24  {
25  }
26  }
27 }
LauncherAppException(string message, Exception innerException)
LauncherAppException(string message, params object[] args)