/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/peek/Peek.FilePreviewer/Exceptions/ImageLoadingException.cs
25 строк
615 B
Samuel Chapleau
[Peek] Powertoys Peek MVP (#25922)
10 май 2023, 20:43
Не верифицирован
10 май 2023, 20:43
648f30d
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Peek.FilePreviewer.Exceptions { public class ImageLoadingException : Exception { public ImageLoadingException() { } public ImageLoadingException(string message) : base(message) { } public ImageLoadingException(string message, Exception innerException) : base(message, innerException) { } } }