소스 검색

Create custom exception

tags/v0.4.5
Adrian Short 6 년 전
부모
커밋
1354202538
2개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -0
      lib/uk_planning_scraper.rb
  2. +1
    -1
      lib/uk_planning_scraper/authority.rb

+ 2
- 0
lib/uk_planning_scraper.rb 파일 보기

@@ -5,4 +5,6 @@ require 'uk_planning_scraper/northgate'
require 'logger'

module UKPlanningScraper
class SystemNotSupportedError < StandardError
end
end

+ 1
- 1
lib/uk_planning_scraper/authority.rb 파일 보기

@@ -45,7 +45,7 @@ module UKPlanningScraper
apps = self.scrape_northgate(authority.url, params, options)
else
# Not supported
raise "Planning system not supported for #{@name} at URL: #{@url}"
raise SystemNotSupportedError.new("Planning system not supported for #{@name} at URL: #{@url}")
end
# Post processing


불러오는 중...
취소
저장