lib/lutaml/model/error/no_root_namespace_error.rb



module Lutaml
  module Model
    class NoRootNamespaceError < Error
      def to_s
        "Cannot assign namespace to `no_root`"
      end
    end
  end
end