You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
499 B
C#
23 lines
499 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using EpicGames.Horde.Storage;
|
|
|
|
namespace Jupiter.Common
|
|
{
|
|
public class NamespaceNotFoundException : Exception
|
|
{
|
|
public NamespaceId Namespace { get; }
|
|
|
|
public NamespaceNotFoundException(NamespaceId @namespace) : base($"Could not find namespace {@namespace}")
|
|
{
|
|
Namespace = @namespace;
|
|
}
|
|
|
|
public NamespaceNotFoundException(NamespaceId @namespace, string message) : base(message)
|
|
{
|
|
Namespace = @namespace;
|
|
}
|
|
}
|
|
}
|