diff --git a/PlayStationSharp/Exceptions/PlayStationApiException.cs b/PlayStationSharp/Exceptions/PlayStationApiException.cs index cfa613e..aff6a73 100644 --- a/PlayStationSharp/Exceptions/PlayStationApiException.cs +++ b/PlayStationSharp/Exceptions/PlayStationApiException.cs @@ -8,6 +8,9 @@ public class PlayStationApiException : Exception { public Error Error; - public PlayStationApiException(Error error) => Error = error; + public PlayStationApiException(Error error) : base(error.Message) + { + Error = error; + } } }