class Humidifier::Stack::TemplateTooLargeError

Public Class Methods

new(bytesize) click to toggle source
Calls superclass method
# File lib/humidifier/stack.rb, line 13
def initialize(bytesize)
  super(
    "Cannot use a template > #{MAX_TEMPLATE_URL_SIZE} bytes " \
    "(currently #{bytesize} bytes), consider using nested stacks " \
    '(http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide' \
    '/aws-properties-stack.html)'
  )
end