chore: align ark-suac app and refresh appstore zip
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
module AsaCtrl
|
||||
module Errors
|
||||
class BaseError < StandardError; end
|
||||
end
|
||||
end
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
require_relative './base_error.rb'
|
||||
require_relative './mod_already_enabled_error.rb'
|
||||
require_relative './rcon_authentication_error.rb'
|
||||
require_relative './rcon_password_not_found_error.rb'
|
||||
require_relative './rcon_port_not_found_error.rb'
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
module AsaCtrl
|
||||
module Errors
|
||||
class ModAlreadyEnabledError < BaseError; end
|
||||
end
|
||||
end
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
module AsaCtrl
|
||||
module Errors
|
||||
class RconAuthenticationError < BaseError; end
|
||||
end
|
||||
end
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
module AsaCtrl
|
||||
module Errors
|
||||
class RconPasswordNotFoundError < BaseError; end
|
||||
end
|
||||
end
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
module AsaCtrl
|
||||
module Errors
|
||||
class RconPortNotFoundError < BaseError; end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user