8 lines
192 B
C#
8 lines
192 B
C#
namespace ALttPRandomizer {
|
|
using System;
|
|
|
|
public class GenerationFailedException : Exception {
|
|
public GenerationFailedException(string message) : base(message) { }
|
|
}
|
|
}
|