Sha256: 2d1f9e542a976d110cf21b942f58a435c7967328a889292fcd4cef12efdb2f69
Contents?: true
Size: 270 Bytes
Versions: 2
Compression:
Stored size: 270 Bytes
Contents
require 'bun_bo/results/base_error' class BunBo class FileExisted < BaseError def initialize(path) @path = path end def message "#{path} exists. No modification is applied for this file." end private attr_reader :path end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bun_bo-0.2.1 | lib/bun_bo/results/file_existed.rb |
bun_bo-0.2.0 | lib/bun_bo/results/file_existed.rb |