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;
|
|
}
|
|
}
|
|
}
|