oops.go 499 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2013 IBM Corp.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution, and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Seth Hoenig
  11. * Allan Stockdill-Mander
  12. * Mike Robertson
  13. */
  14. package mqtt
  15. func chkerr(e error) {
  16. if e != nil {
  17. panic(e)
  18. }
  19. }
  20. func chkcond(b bool) {
  21. if !b {
  22. panic("oops")
  23. }
  24. }