Exception: Cloudtasker::MaxTaskSizeExceededError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cloudtasker/max_task_size_exceeded_error.rb

Overview

Handle Cloud Task size quota See: cloud.google.com/appengine/quotas#Task_Queue

Constant Summary collapse

MSG =
'The size of Cloud Tasks must not exceed 100KB'

Instance Method Summary collapse

Constructor Details

#initialize(msg = MSG) ⇒ MaxTaskSizeExceededError

Returns a new instance of MaxTaskSizeExceededError.



10
11
12
# File 'lib/cloudtasker/max_task_size_exceeded_error.rb', line 10

def initialize(msg = MSG)
  super
end