blob: 039cae7273d577dd77b2c9c5b1033119f5d32604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* ErrorService.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Services
{
using System;
using Interfaces;
using Views;
/// <summary>
/// The Error Service
/// </summary>
public class ErrorService : IErrorService
{
/// <summary>
/// Show an Error Window
/// </summary>
/// <param name="shortError">
/// The short error message for the user to read
/// </param>
/// <param name="longError">
/// Exception string or advanced details
/// </param>
public void ShowError(string shortError, string longError)
{
ExceptionWindow window = new ExceptionWindow();
window.Setup(shortError, longError);
window.Show();
}
/// <summary>
/// Show a Notice or Warning Message.
/// </summary>
/// <param name="notice">
/// The text to display to the user
/// </param>
/// <param name="isWarning">
/// Is a warning window, show the warning icon instead of the notice
/// </param>
public void ShowNotice(string notice, bool isWarning)
{
throw new NotImplementedException();
}
}
}
|