export class AWSLogGroupNotFound extends Error {
  constructor (functionName) {
    const msg = `No log groups found for ${functionName}`
    super(msg)
    this.message = msg