mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 14:12:56 +08:00
Throw exception rather than returning nulls
This commit is contained in:
parent
4fa2c5c8c1
commit
03b61e4a5a
@ -1,6 +1,7 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Humanizer;
|
||||
@ -38,7 +39,7 @@ namespace osu.Game.Online.API
|
||||
Mod resultMod = ruleset.GetAllMods().FirstOrDefault(m => m.Acronym == Acronym);
|
||||
|
||||
if (resultMod == null)
|
||||
return null; // Todo: Maybe throw exception?
|
||||
throw new InvalidOperationException($"There is no mod in the ruleset ({ruleset.ShortName}) matching the acronym {Acronym}.");
|
||||
|
||||
foreach (var (_, property) in resultMod.GetSettingsSourceProperties())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user