GranblueError should not require input param

This commit is contained in:
Justin Edmund 2022-12-21 15:50:06 -08:00
parent 44e92733d3
commit f86aa30791

View file

@ -4,7 +4,7 @@ module Api
module V1
# This is the base error that we inherit from for application errors
class GranblueError < StandardError
def initialize(data)
def initialize(data = '')
@data = data
end