class OpenShift::Runtime::FrontendHttpServerNameException

Attributes

server_name[R]

Public Class Methods

new(msg=nil, container_uuid=nil, fqdn=nil, server_name=nil) click to toggle source
# File lib/openshift-origin-node/model/frontend_httpd.rb, line 72
def initialize(msg=nil, container_uuid=nil, fqdn=nil, server_name=nil)
  @server_name = server_name
  super(msg, container_uuid, fqdn)
end

Public Instance Methods

to_s() click to toggle source
# File lib/openshift-origin-node/model/frontend_httpd.rb, line 77
def to_s
  m = super
  m+= ": #{@server_name}" if not @server_name.nil?
  m
end